vote up 0 vote down star
1

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.

flag

76% accept rate
Seems like there would be a better way to do that than using Python... – David Mar 4 at 23:47
this is not really on liner!!! unless you follow a very laaaaax definition of a line of code, where empty lines are counted too! – hasen j Mar 5 at 6:47
what exactly are you trying to do?? dir . already lists them all, so what's the point? – hasen j Mar 5 at 9:02

6 Answers

vote up 2 vote down check

You can read data piped into a Python script by reading sys.stdin. For example:

ls -al | python -c "import sys; print sys.stdin.readlines()"

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.

link|flag
vote up 1 vote down

Specifically would like to know how to pipe into a python -c

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

A | B

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 sys.stdin

link|flag
One thing kinda bothers me though. Why do you want to use python -c? – hasen j Mar 5 at 9:12
to avoid writing a py file saving it and then running though cmd line. – Luis Mar 5 at 20:16
vote up 1 vote down

would like to know how to pipe though

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.:

dir "*.*" | python -c "import sys;[sys.stdout.write('>>%s\n' % line) for line in sys.stdin]"

(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.

link|flag
vote up 3 vote down
ls | python -c "import sys; print sys.stdin.read()"

just read stdin as normal for pipes

link|flag
true, but then what's the point? – hasen j Mar 5 at 9:01
no point inherently, but it's a starting point for slightly more complex and possibly useful commands. – cobbal Mar 5 at 18:29
vote up 3 vote down

If you want to print all files:

find . -type f

If you want to print only the current directory's files

find . -type f -maxdepth 1

If you want to include the ">>" before each line

find . -type f -maxdepth 1 | xargs -L 1 echo ">>"

If you don't want the space between ">>" and $path from echo

find . -type f -maxdepth 1 | xargs -L 1 printf ">>%s\n"

This is all using cygwin, of course.

link|flag
+1 - python is nice (I'm a fan), but sometimes there are tools just built to do the job already :-) – Jarret Hardie Mar 5 at 0:47
vote up 2 vote down
python -c "import os; print os.listdir('.')"

If you want to apply some formatting like you have in your question,

python -c "import os; print '\n'.join(['>>%s' % x for x in os.listdir('.')])"

If you want to use a pipe, use xargs:

ls | xargs python -c "import sys; print '>>', sys.argv[1:]"

or backticks:

python -c "import sys; print '>>', sys.argv[1:]" `ls`
link|flag
Thanks, would like to know how to pipe though. – Luis Mar 4 at 23:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.