mirror of
https://github.com/cheat/cheat.git
synced 2024-11-22 22:11:35 +01:00
commit
350a4ee863
9
cheatsheets/mkdir
Normal file
9
cheatsheets/mkdir
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# 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}}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user