mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 18:06:02 +02:00
fix typos using misspell (#1374)
This commit is contained in:
parent
c0616697ed
commit
550ede5cfb
7 changed files with 8 additions and 8 deletions
|
@ -10,6 +10,6 @@
|
||||||
|
|
||||||
`cloc --progress=1 {{/path/to/directory}}`
|
`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}}`
|
`cloc --diff {{/directory/one}} {{/directory/two}}`
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
`ps axu | fzf`
|
`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}}`
|
`find {{path/to/search_files}} -type f | fzf -m > {{filename}}`
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> PHPUnit command-line test runner.
|
> 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`
|
`phpunit`
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
`tr 'abcd' 'jkmn' < {{filename}}`
|
`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}}'`
|
`tr -d '{{input_characters}}'`
|
||||||
|
|
||||||
|
|
|
@ -15,10 +15,10 @@
|
||||||
|
|
||||||
`sort {{file}} | uniq -d`
|
`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`
|
`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`
|
`sort {{file}} | uniq -c | sort -nr`
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Extract compressed files in a ZIP archive.
|
> 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)}}`
|
`unzip {{file(s)}}`
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
> Shows information about a font matching a pattern.
|
> 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}}'`
|
`fc-pattern -d '{{DejaVu Serif}}'`
|
||||||
|
|
Loading…
Add table
Reference in a new issue