Browse Source

Merge branch 'Parth-Mehrotra-master'

Igor Shubovych 9 years ago
parent
commit
c3bc91c813
2 changed files with 6 additions and 6 deletions
  1. 4 4
      pages/linux/head.md
  2. 2 2
      pages/osx/head.md

+ 4 - 4
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}}`

+ 2 - 2
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}}`