1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

Normalize the final new line

Fixes #310
Some files had no newlines, some had 1 newline and some more than 1 newline.
Normalize them all to have only 1 newline at the end of all files.
This commit is contained in:
Srinivasan R 2015-10-28 14:03:06 +05:30
parent acf8756f56
commit e4114fa6cc
45 changed files with 25 additions and 50 deletions

View file

@ -17,5 +17,3 @@
- Sum the values in the first column and pretty-print the values and then the total
`awk '{s+=$1; print $1} END {print "--------"; print s}' {{filename}}`

View file

@ -9,4 +9,3 @@
- Display the date using a custom format
`date +"%d/%m/%Y %H:%M:%S"`

View file

@ -9,4 +9,3 @@
- display all file systems and their disk usage in human readable form
`df -h`

View file

@ -25,4 +25,3 @@
- Clear CSS and JavaScript caches
`drush cc css-js`

View file

@ -13,5 +13,3 @@
- Include libraries from a different path
`gcc {{source.c}} -o {{executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}`

View file

@ -13,4 +13,3 @@
- Also add ignored files
`git add -f`

View file

@ -13,4 +13,3 @@
- Combine audio from one file and video from another
`MP4Box -add {{input1.mp4}}#audio -add {{input2.mp4}}#video {{output.mp4}`

View file

@ -19,5 +19,3 @@
- Play the given audio in reverse
`play {{audiofile}} reverse`

View file

@ -21,4 +21,3 @@
- Detach from inside a screen
`ctrl+A D`

View file

@ -18,5 +18,3 @@
- replace all occurrences of multiple strings in a file
`sed -e 's/{{find}}/{{replace}}/g' -e 's/{{find}}/{{replace}}/g' {{filename}}`

View file

@ -13,4 +13,3 @@
- Split a file with at most 512 bytes of lines in each split.
`split -C 512 {{filename}}`

View file

@ -25,4 +25,3 @@
- capture all traffic except traffic over port 22 and save to a dump file
`tcpdump -w dumpfile.pcap not port 22`

View file

@ -17,4 +17,3 @@
- Create new user with supplementary groups (mind the lack of whitespace)
`useradd -G {{group1,group2}} {{name}}`

View file

@ -13,4 +13,3 @@
- count characters in file (taking multi-byte character sets into account)
`wc -m {{file}}`

View file

@ -14,4 +14,3 @@
- send a message with timeout (default 300)
`wall -t {{seconds}} {{file}}`

View file

@ -9,5 +9,3 @@
- Prevent mac from sleeping until a command completes
`caffeinate -s {{command}}`

View file

@ -9,4 +9,3 @@
- Burn a folder as an ISO9660 filesystem onto a DVD. Don't verify and eject when complete.
`drutil burn -noverify -eject -iso9660`

View file

@ -9,4 +9,3 @@
- Place the results of a command in the clipboard
`find . -type t -name "*.png" | pbcopy`

View file

@ -9,4 +9,3 @@
- Use the contents of the clipboard as input to a command.
`pbpaste | grep foo`

View file

@ -9,4 +9,3 @@
- Print OSX Build
`sw_vers -buildVersion`