1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 21:06:00 +02:00

fix typos using misspell (#1374)

This commit is contained in:
Wolfgang Lutz 2017-05-12 11:29:18 +02:00 committed by Waldir Pimenta
parent c0616697ed
commit 550ede5cfb
7 changed files with 8 additions and 8 deletions

View file

@ -10,6 +10,6 @@
`cloc --progress=1 {{/path/to/directory}}`
- Compare 2 directory sturctures and count the differences between them:
- Compare 2 directory structures and count the differences between them:
`cloc --diff {{/directory/one}} {{/directory/two}}`

View file

@ -10,7 +10,7 @@
`ps axu | fzf`
- Select mutliple files with `Shift + Tab` and write to a file:
- Select multiple files with `Shift + Tab` and write to a file:
`find {{path/to/search_files}} -type f | fzf -m > {{filename}}`

View file

@ -2,7 +2,7 @@
> PHPUnit command-line test runner.
- Run tests in the current direcotry. Note: Expects you to have a 'phpunit.xml':
- Run tests in the current directory. Note: Expects you to have a 'phpunit.xml':
`phpunit`

View file

@ -10,7 +10,7 @@
`tr 'abcd' 'jkmn' < {{filename}}`
- Delete all occurances of the specified set of characters from the input:
- Delete all occurrences of the specified set of characters from the input:
`tr -d '{{input_characters}}'`

View file

@ -15,10 +15,10 @@
`sort {{file}} | uniq -d`
- Display number of occurences of each line along with that line:
- Display number of occurrences of each line along with that line:
`sort {{file}} | uniq -c`
- Display number of occurences of each line, sorted by the most frequent:
- Display number of occurrences of each line, sorted by the most frequent:
`sort {{file}} | uniq -c | sort -nr`

View file

@ -2,7 +2,7 @@
> Extract compressed files in a ZIP archive.
- Extract zip file(s) (for multiple files, seperate file paths by spaces):
- Extract zip file(s) (for multiple files, separate file paths by spaces):
`unzip {{file(s)}}`

View file

@ -2,6 +2,6 @@
> Shows information about a font matching a pattern.
- Display default infomation about a font:
- Display default information about a font:
`fc-pattern -d '{{DejaVu Serif}}'`