From 169ce8b52d502c15cadb1540a6721801f6227cd1 Mon Sep 17 00:00:00 2001 From: rootTHC <57636391+rootTHC@users.noreply.github.com> Date: Thu, 23 Jan 2020 20:26:34 +0000 Subject: [PATCH] Update README.md line to long. shortened. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3efffe..2400cba 100644 --- a/README.md +++ b/README.md @@ -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.