|
Bash Script as Requested
#!/bin/bash
for filename in *
do
n=`echo $filename | tr '[:upper:]' '[:lower:]'`
mv $filename $n
done
******************************
just execute the script above in the directory containing the files from the database -- it will convert them all to lower-case.
Ray
|