mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 12:57:01 +00:00
add mktemp
This commit is contained in:
parent
a59c8598b0
commit
57085df9be
@ -3105,6 +3105,11 @@ rsync -av directory user@ip_address:/path/to/directory.bak
|
|||||||
# skip files that are newer on receiver (i prefer this one!)
|
# skip files that are newer on receiver (i prefer this one!)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
##### Create a temporary directory and `cd` into it
|
||||||
|
```bash
|
||||||
|
cd $(mktemp -d)
|
||||||
|
```
|
||||||
|
|
||||||
##### Make all directories at one time!
|
##### Make all directories at one time!
|
||||||
```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}
|
||||||
|
Loading…
Reference in New Issue
Block a user