This commit is contained in:
2026-01-19 21:36:25 -05:00
parent f28c54f610
commit 04fd09550a
52 changed files with 1743 additions and 0 deletions

15
bin/wsl/renumber_jpgs.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
SAVEIFS=$IFS
export IFS=$'\n';
CDIR=$(pwd)
n=1
for i in `ls *.jpg`; do
nn=`printf "%04d\n" ${n}`
echo "mv ${i} to ${nn}.jpg"
mv ${i} ${nn}.jpg
((n++))
done
IFS=$SAVEIFS