add file renaming script

This commit is contained in:
cuqmbr 2024-04-19 20:36:28 +03:00
commit 46bcac61d7
Signed by: cuqmbr
GPG Key ID: 0AA446880C766199

20
recursive-rename.sh Executable file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env sh
PATH_TO_ROOT_DIRECTORY="${1}"
NAME_TO_BE_REPLACED="${2}"
NAME_TO_REPLACE_TO="${3}"
files=$(find "${PATH_TO_ROOT_DIRECTORY}" -name "*${NAME_TO_BE_REPLACED}*")
for relative_file_path in ${files}; do
number_of_fields=$(printf '%s\n' "${relative_file_path}" | awk --field-separator '/' '{ print NF - 1}')
relative_folder_path=$(printf '%s\n' "${relative_file_path}" | cut -d '/' -f "-${number_of_fields}")
file_name=$(printf '%s\n' "${relative_file_path}" | awk --field-separator '/' '{ print $NF }')
new_name=$(printf '%s\n' "${file_name}" | sed "s/${NAME_TO_BE_REPLACED}/${NAME_TO_REPLACE_TO}/")
new_file_path="${relative_folder_path}/${new_name}"
mv "${relative_file_path}" "${new_file_path}"
printf "Moved\n '%s'\nto\n '%s'\n\n" "${relative_file_path}" "${new_file_path}"
done