Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$ which file
/usr/bin/file
$ file /usr/bin/file
/usr/bin/file: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.15, stripped

Why does this not work?

$ which file | file

Usage: file [-bcikLhnNrsvz0] [-e test] [-f namefile] [-F separator] [-m magicfiles] file...
   file -C -m magicfiles

Try file --help for more information.

share|improve this question
possible duplicate of Why does my Bash counter reset after while loop – ajreal Feb 16 '11 at 14:06

3 Answers

up vote 3 down vote accepted

file expects its arguments on the command line, not on its standard input, unless you tell it otherwise:

$ which file | file -f -

Alternatively:

$ file `which file`

Or, for completeness:

$ which file | xargs file
share|improve this answer
$ which file | xargs file adding for completeness chose this answer because it has the shortest pipe option. – nelaar Feb 18 '11 at 8:44

You're probably looking for xargs or shell expansion. Try:

$ which file | xargs file

or

$ file `which file`
share|improve this answer
thanks using your option to complete the answer above – nelaar Feb 18 '11 at 8:48

Try backquotes instead, e.g.

$ file `which python`
/usr/bin/python: symbolic link to `python2.6'

Your example doesn't work because your pipe is sending the output of the which command to the stdin of the file command. But file doesn't work on stdin - it works on a command line argument.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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