|
#!/bin/sh
# read a file, line by line (this could be an ls generated file)...
while f=`line`
do
$f
done < file.dat
echo "You're turn for effort"
__________________
http://jasonpowers.net
"There are a thousand hacking at the branches of evil to one who is striking at the root."
Last edited by Infinite Recursion; Apr 26th, 2005 at 1:34 PM.
|