Re: HELP! Scripting newbie question.



Julie Warden wrote:

Here's what I've tried:
assuming you're in a database directory with a bunch of *.db files...

tst /db/*.db

#!/bin/sh
### tst

for file in `$1`
do


"$@" is what you use to get the arg list:

for file in "$@"
do
echo "$file"
done
.



Relevant Pages