mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 12:57:01 +00:00
include full output
This commit is contained in:
parent
a59c8598b0
commit
7d1c903031
13
README.md
13
README.md
@ -3109,7 +3109,18 @@ rsync -av directory user@ip_address:/path/to/directory.bak
|
|||||||
```bash
|
```bash
|
||||||
mkdir -p project/{lib/ext,bin,src,doc/{html,info,pdf},demo/stat}
|
mkdir -p project/{lib/ext,bin,src,doc/{html,info,pdf},demo/stat}
|
||||||
# -p: make parent directory
|
# -p: make parent directory
|
||||||
# this will create project/doc/html/; project/doc/info; project/lib/ext ,etc
|
# this will create:
|
||||||
|
project/
|
||||||
|
project/bin/
|
||||||
|
project/demo/
|
||||||
|
project/demo/stat/
|
||||||
|
project/doc/
|
||||||
|
project/doc/html/
|
||||||
|
project/doc/info/
|
||||||
|
project/doc/pdf/
|
||||||
|
project/lib/
|
||||||
|
project/lib/ext/
|
||||||
|
project/src/
|
||||||
```
|
```
|
||||||
|
|
||||||
##### Run command only if another command returns zero exit status (well done)
|
##### Run command only if another command returns zero exit status (well done)
|
||||||
|
Loading…
Reference in New Issue
Block a user