Hi,
I'm newbie on Unix, and I need to create a script renaming some files. The loop using the "for" command works fine unless there isn't a file to rename. For example:
FLD="/test/fl*"
for FL in $FLD
do
mv $FL /test/file.txt
#other statements....
done
So, if there's no file in the...