User Tools

Site Tools


cmd

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
cmd [2012/08/26 15:56] – created skipidarcmd [2020/12/27 20:35] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +===== cmd =====
  
 +Here the Linus syntax is used together with windows.
 +Linux commands can be installed on Windows by installing [[http://www.cygwin.com/|Cygwin]].
 +
 +<code>
 +command1 | command2 - pipe passes the output from command1 an input to command2
 +grep "PATTERN" SOURCEPATTERN - searches the file or a bunch of files, described by SOURCEPATTERN (e.g. *.txt) for the PATTERN. PATTERN is found case dependant, on any position insede the text
 +dir /d | grep "ogramme" - searches the directories for the "ogramme" String in it and prints the found lines.
 +</code>