From 17a6fb99b3c64b28f4a8b55c7bede1443d061f3b Mon Sep 17 00:00:00 2001 From: Parth Mehrotra Date: Sun, 3 Jan 2016 23:11:03 -0500 Subject: [PATCH] Head args are supposed to be in bytes rather than KB commit 32490f087fce93beadae3c59b10c1b8200734106 Author: Parth Mehrotra Date: Sun Jan 3 23:09:09 2016 -0500 replaced spaces with underscores commit 51c680741e497aa891848e2008f55e5c316c18f0 Author: Parth Mehrotra Date: Sat Jan 2 22:23:37 2016 -0500 head args are supposed to be in bytes, rather thank KB commit 52e1aefe5bdcf05084222ec2c184bdd5ff96cc8e Author: Parth Mehrotra Date: Sat Jan 2 13:31:56 2016 -0500 head args aren't in bytes --- pages/linux/head.md | 8 ++++---- pages/osx/head.md | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pages/linux/head.md b/pages/linux/head.md index 192145d47..948b8f84b 100644 --- a/pages/linux/head.md +++ b/pages/linux/head.md @@ -4,16 +4,16 @@ - Output the first few lines of a file -`head -n {{count of lines}} {{filename}}` +`head -n {{count_of_lines}} {{filename}}` - Output the first few bytes of a file -`head -c {{size in kilobytes}} {{filename}}` +`head -c {{size_in_bytes}} {{filename}}` - Output everything but the last few lines of a file -`head -n -{{count of lines}} {{filename}}` +`head -n -{{count_of_lines}} {{filename}}` - Output everything but the last few bytes of a file -`head -c -{{size in kilobytes}} {{filename}}` +`head -c -{{size_in_bytes}} {{filename}}` diff --git a/pages/osx/head.md b/pages/osx/head.md index f748591ca..16f5fba16 100644 --- a/pages/osx/head.md +++ b/pages/osx/head.md @@ -4,8 +4,8 @@ - Output the first few lines of a file -`head -n {{count of lines}} {{filename}}` +`head -n {{count_of_lines}} {{filename}}` - Output the first few bytes of a file -`head -c {{number in kilobytes}} {{filename}}` +`head -c {{number_in_bytes}} {{filename}}`