Forum: Shell Scripting Jan 17th, 2005 |
| Replies: 7 Views: 7,370 You can feed a text file to a shell script in various ways - typical syntax is:
cat somefile.txt | somescript.sh
or
somescript.sh < somefile.txt
or
cat somefile.txt | somescript.sh -
or... |
Forum: Shell Scripting Jan 13th, 2005 |
| Replies: 7 Views: 7,370 http://www.google.com/search?q=shell+scripting+tutorial |
Forum: Shell Scripting Dec 6th, 2004 |
| Replies: 0 Views: 21,531 Shameless plug:
http://steve-parker.org/sh/sh.shtml
A bourne Shell Programming/Scripting Tutorial for learning about using the Unix shell.
Centres on the Bourne shell, but mentions when bash... |