script_collection/rename_files.sh

8 lines
92 B
Bash
Raw Permalink Normal View History

2024-07-10 00:02:20 +02:00
#!/bin/bash
count=
for i in *.mkv; do
mv "$i" "example.s01.e$count.mkv"
((count++))
done