瀏覽代碼

head: refresh page (#7680)

Emily Grace Seville 3 年之前
父節點
當前提交
a3d30c0a0d
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      pages/common/head.md

+ 4 - 4
pages/common/head.md

@@ -5,16 +5,16 @@
 
 - Output the first few lines of a file:
 
-`head -n {{count_of_lines}} {{filename}}`
+`head --lines {{count}} {{path/to/file}}`
 
 - Output the first few bytes of a file:
 
-`head -c {{size_in_bytes}} {{filename}}`
+`head --bytes {{count}} {{path/to/file}}`
 
 - Output everything but the last few lines of a file:
 
-`head -n -{{count_of_lines}} {{filename}}`
+`head --lines -{{count}} {{path/to/file}}`
 
 - Output everything but the last few bytes of a file:
 
-`head -c -{{size_in_bytes}} {{filename}}`
+`head --bytes -{{count}} {{path/to/file}}`