I had the need to remove from several folders that the same level the first 5 characters recursively.
for i in **; do [[ -d "$i" ]] || continue; mv "$i" "$(echo $i | sed -e 's/^.......//')";done
welcome..
I had the need to remove from several folders that the same level the first 5 characters recursively.
for i in **; do [[ -d "$i" ]] || continue; mv "$i" "$(echo $i | sed -e 's/^.......//')";done
VBS script to copy one single file or several.