You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
215 B
13 lines
215 B
#!/bin/bash
|
|
|
|
# Rename canto files
|
|
|
|
for file in *;
|
|
do
|
|
if [[ $file != r.sh ]]; then
|
|
num="$(echo $file | tr -d -c 0-9)"
|
|
pad="$(printf "%03d\n" $num)"
|
|
echo "$file: $pad"
|
|
mv $file "$pad-purgatorio.txt"
|
|
fi
|
|
done
|
|
|