diff options
Diffstat (limited to 'home/dot_local/share/bin/executable_subrename')
| -rw-r--r-- | home/dot_local/share/bin/executable_subrename | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/dot_local/share/bin/executable_subrename b/home/dot_local/share/bin/executable_subrename index 16d913f..ea6e446 100644 --- a/home/dot_local/share/bin/executable_subrename +++ b/home/dot_local/share/bin/executable_subrename @@ -48,7 +48,7 @@ fi for file in "$@" ; do new_filename="$(printf 's%02de%02d%s\n' "$season" "$episode" "$file_extension")" - mv --verbose "$file" "$new_filename" + mv -v "$file" "$new_filename" episode=$(( $episode + 1 )) done |