6 lines
78 B
Bash
6 lines
78 B
Bash
|
for i in *.jpg
|
||
|
do
|
||
|
echo "Working on $i..."
|
||
|
mv $i `date +"%Y-%m-%d"`-$i
|
||
|
done
|