1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-23 15:15:28 +02:00

Merge branch 'master' of git://github.com/Parth-Mehrotra/tldr into Parth-Mehrotra-master

This commit is contained in:
Igor Shubovych 2016-01-04 13:47:19 +02:00
commit 7af5e4bbef
2 changed files with 6 additions and 6 deletions

View file

@ -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}}`

View file

@ -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}}`