prev |
Chaining Commands Together |
next |
> redirects output into a file
% ls > listing.txt
% cat listing.txt
PapaRoach--Getting_Away_With_Murder.mp3
NIN--Closer.mp3
-
|
puts output from one program into the input of
another
% ls | wc
2 2 58
- Too much output? Pipe through
less
or
more
% ./really_verbose_script | less