Following is the bash script that renames a sets of file form the current directoy. In the following is just updating the extension.
#/bin/bash
for file in *.JPEG; do
name=$(basename "$file" .JPEG)
mv "$file" "$name.jpeg"
done
©mytechtoday.com 2006-2010
0 comments:
Post a Comment
I love to entertain onymous user Comment !