From 663d72012d1c64dd376062250bf27f9e26795661 Mon Sep 17 00:00:00 2001 From: ImmortalPC Date: Mon, 18 Nov 2013 10:08:18 +0100 Subject: [PATCH] [Add] dd --- cheatsheets/dd | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 cheatsheets/dd diff --git a/cheatsheets/dd b/cheatsheets/dd new file mode 100644 index 0000000..c1db5f3 --- /dev/null +++ b/cheatsheets/dd @@ -0,0 +1,4 @@ +# Read from {/dev/urandom} 2*512 Bytes and put it into {/tmp/test.txt} +# Note: At the first iteration, we read 512 Bytes. +# Note: At the second iteration, we read 512 Bytes. +dd if=/dev/urandom of=/tmp/test.txt count=512 bs=2