You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# For my videos & photos named with a dash between the date and time rename them without it eg. 2020-12-31-10-05-54 => 2020-12-31 10-05-54
i=0
find . -name '[0123456789][0123456789][0123456789][0123456789]-[0123456789][0123456789]-[0123456789][0123456789]-[0123456789][0123456789]-[0123456789][0123456789]-[0123456789][0123456789]*' | while read file; do
echo "Handling ${file}"
# file_ext=${file##*.}
newName=$(echo "$(basename "${file}")" | sed -r "s/^([0-9]{4}-[0-9]{2}-[0-9]{2})-([0-9]{2}-[0-9]{2}-[0-9]{2})/\1 \2/")