mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 12:57:01 +00:00
fix typo "//dev/shm"
This commit is contained in:
parent
a59c8598b0
commit
794d4ba7b3
@ -3240,9 +3240,9 @@ fallocate -l 10G 10Gigfile
|
|||||||
|
|
||||||
##### Create dummy file of certain size (e.g. 200mb)
|
##### Create dummy file of certain size (e.g. 200mb)
|
||||||
```bash
|
```bash
|
||||||
dd if=/dev/zero of=//dev/shm/200m bs=1024k count=200
|
dd if=/dev/zero of=/dev/shm/200m bs=1024k count=200
|
||||||
# or
|
# or
|
||||||
dd if=/dev/zero of=//dev/shm/200m bs=1M count=200
|
dd if=/dev/zero of=/dev/shm/200m bs=1M count=200
|
||||||
|
|
||||||
# Standard output:
|
# Standard output:
|
||||||
# 200+0 records in
|
# 200+0 records in
|
||||||
|
Loading…
Reference in New Issue
Block a user