How can I make the following one liner print every file through Python?
python -c "import sys;print '>>',sys.argv[1:]" | dir *.*
Specifically would like to know how to pipe into a python -c. DOS or Cygwin responses accepted.
|
1
|
|||||||
|
|
|
You can read data piped into a Python script by reading sys.stdin. For example:
It is not entirely clear what you want to do (maybe I am stupid). The confusion comes from your example which is piping data out of a python script. |
||
|
|
|
|
see cobbal's answer piping through a program is transparent from the program's point of view, all the program knows is that it's getting input from the standard input stream Generally speaking, a shell command of the form
redirects the output of A to be the input of B so if A spits "asdf" to standard output, then B gets "asdf" into its standard input the standard input stream in python is |
||
|
|
You had the pipe the wrong way round, if you wanted to feed the output of ‘dir’ into Python, ‘dir’ would have to be on the left. eg.:
(The hack with the list comprehension is because you aren't allowed a block-introducing ‘for’ statement on one line after a semicolon.) Clearly the Python-native solution (‘os.listdir’) is much better in practice. |
||
|
|
|
|
just read stdin as normal for pipes |
||
|
|
If you want to print all files:
If you want to print only the current directory's files
If you want to include the ">>" before each line
If you don't want the space between ">>" and $path from echo
This is all using cygwin, of course. |
||
|
|
|
If you want to apply some formatting like you have in your question,
If you want to use a pipe, use
or backticks:
|
||
|