Created
August 11, 2016 15:40
-
-
Save marcusshepp/076e2feb316ad6380d22956efa127877 to your computer and use it in GitHub Desktop.
file manipulation -- creating/rm muiltple files with curly braces
This file contains hidden or 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
touch foo/bar/{marcus,nathan}.rb | |
ls foo/bar/ | |
# . | |
# .. | |
# marcus.rb | |
# nathan.rb | |
rm foo/bar/{marcus,nathan}.rb | |
ls foo/bar | |
# . | |
# .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment