1
0
mirror of https://github.com/cheat/cheat.git synced 2025-07-03 04:11:59 +02:00
Files
cheat/cheatsheets/mkdir
2013-09-21 16:31:17 -04:00

10 lines
233 B
Plaintext

# Create a directory and all its parents
mkdir -p foo/bar/baz
# Create foo/bar and foo/baz directories
mkdir -p foo/{bar,baz}
# Create the foo/bar, foo/baz, foo/baz/zip and foo/baz/zap directories
mkdir -p foo/{bar,baz/{zip,zap}}