in reply to Receiving Standard Input/Piped
For what you are doing, you could get most of that via the commandline tools:
Or, if you have a directory tree that you want to examine:> ls * | xargs wc -l
This will even give you your total, but you may hit the limit of the size of a command line.> find . -type f | xargs wc -l
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Receiving Standard Input/Piped
by thekestrel (Friar) on Sep 08, 2005 at 22:16 UTC |