Created
December 21, 2021 16:48
-
-
Save davethehacker/a6e32a29354d21b0f98d7a2970ef8f36 to your computer and use it in GitHub Desktop.
Moves the designated folderToCopy to all subdirectories of the current working directory
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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