1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

Corrected the example: Compress a series of identical characters to a single character

The example wrongly used \n instead of {{input_characters}}.
This commit is contained in:
Angsuman Chakraborty 2017-11-26 16:09:41 +05:30 committed by GitHub
parent d6e9cf0092
commit fc6b0e4661
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,7 +16,7 @@
- Compress a series of identical characters to a single character:
`tr -s '\n'`
`tr -s '{{input_characters}}'`
- Translate the contents of the file to upper-case and print result: