Skip to content

Instantly share code, notes, and snippets.

@davethehacker
Created December 21, 2021 16:48
Show Gist options
  • Save davethehacker/a6e32a29354d21b0f98d7a2970ef8f36 to your computer and use it in GitHub Desktop.
Save davethehacker/a6e32a29354d21b0f98d7a2970ef8f36 to your computer and use it in GitHub Desktop.
Moves the designated folderToCopy to all subdirectories of the current working directory
#bin/bash
for dir in ./*/ # list directories in the form "/tmp/dirname/"
do
dir=${dir%*/} # remove the trailing "/"
echo "${dir##*/}" # print everything after the final "/"
cp ./folderToCopy/ ${dir##*/} -r # copy the designated folder to the subfolder
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment