JESUS

NORDVPN_ILLPHATED
SHARE THIS NOW!
#!/bin/bash # Counter for sequential numbering counter=1 # Loop through all image and video files in the current directory for file in *.{jpg,jpeg,png,gif,mp4,mov,avi,mkv}; do # Check if the file exists if [[ -e "$file" ]]; then # Construct new file name new_name="ILLPHATED-JESUS-$counter.${file##*.}" # Rename file mv "$file" "$new_name" # Increment counter counter=$((counter + 1)) fi done echo "Renaming completed!"
Scroll to Top