Skip to navigation
Rename files recursively within subdirectories in linux
07.12.13
how to rename files recursively within subdirectories in linux you can use this command: for file in $(find . -name "*.jcd"); do dir=$(echo $file | cut -d "/" -f -2); mv $file $dir/1.jcd; done
Reply
Anonymous
Information Epoch 1732502141
Don't force yourself or others to reimplement functionality.
Home
Notebook
Contact us