Skip to content

Instantly share code, notes, and snippets.

@ryancat
Created April 2, 2015 05:56
Show Gist options
  • Save ryancat/f67c3eab4a7e25858586 to your computer and use it in GitHub Desktop.
Save ryancat/f67c3eab4a7e25858586 to your computer and use it in GitHub Desktop.
How to add folder in multiple folders
http://unix.stackexchange.com/questions/61907/how-do-i-create-a-directory-in-all-subdirectories
for dir in */; do mkdir -- "$dir/tmp1"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment