mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 17:08:35 +01:00
10 lines
233 B
Text
10 lines
233 B
Text
|
# 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}}
|
||
|
|