Update README.md

line to long. shortened.
This commit is contained in:
rootTHC
2020-01-23 20:26:34 +00:00
committed by GitHub
parent 0ffa62b04a
commit 169ce8b52d
+1 -1
View File
@@ -214,7 +214,7 @@ $ shred -z foobar.txt
**15. Shred & Erase without *shred***
```
$ FNAME=foobar.txt; dd bs=1k count="`du -sk \"${FNAME}\" | cut -f1`" if=/dev/urandom >"${FILENAME}"; rm -f "${FNAME}"
$ FN=foobar.txt; dd bs=1k count="`du -sk \"${FN}\" | cut -f1`" if=/dev/urandom >"${FN}"; rm -f "${FN}"
```
Note: Or deploy your files in */dev/shm* directory so that no data is written to the harddrive. Data will be deleted on reboot.