mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 18:06:02 +02:00
Fix a few typos
This commit is contained in:
parent
6bf26c0e0b
commit
e0ccb7147a
10 changed files with 11 additions and 11 deletions
|
@ -6,6 +6,6 @@
|
||||||
|
|
||||||
`convmv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}`
|
`convmv -f {{from_encoding}} -t {{to_encoding}} {{input_file}}`
|
||||||
|
|
||||||
- Convert filename encoding and rename the file to the new enconding:
|
- Convert filename encoding and rename the file to the new encoding:
|
||||||
|
|
||||||
`convmv -f {{from_encoding}} -t {{to_encoding}} --notest {{input_file}}`
|
`convmv -f {{from_encoding}} -t {{to_encoding}} --notest {{input_file}}`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# gpg
|
# gpg
|
||||||
|
|
||||||
> Gnu Privacy Guard.
|
> GNU Privacy Guard.
|
||||||
|
|
||||||
- Sign doc.txt without encryption (writes output to doc.txt.asc):
|
- Sign doc.txt without encryption (writes output to doc.txt.asc):
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# ipcs
|
# ipcs
|
||||||
|
|
||||||
> Display information about ressources used in IPC (Inter-process Communication).
|
> Display information about resources used in IPC (Inter-process Communication).
|
||||||
|
|
||||||
- Specific information about the Message Queue which has the id 32768:
|
- Specific information about the Message Queue which has the id 32768:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# mysqldump
|
# mysqldump
|
||||||
|
|
||||||
> Backups mysql databases.
|
> Backups MySQL databases.
|
||||||
|
|
||||||
- Create a backup, user will be prompted for a password:
|
- Create a backup, user will be prompted for a password:
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
> Execute SQL-like queries on .csv and .tsv files.
|
> Execute SQL-like queries on .csv and .tsv files.
|
||||||
|
|
||||||
- Query .csv file by specifying the delimeter as ',':
|
- Query .csv file by specifying the delimiter as ',':
|
||||||
|
|
||||||
`q -d',' "SELECT * from {{path/to/file}}"`
|
`q -d',' "SELECT * from {{path/to/file}}"`
|
||||||
|
|
||||||
|
@ -22,6 +22,6 @@
|
||||||
|
|
||||||
`q "SELECT * FROM {{path/to/file}} f1 JOIN {{path/to/other_file}} f2 ON (f1.c1 = f2.c1)"`
|
`q "SELECT * FROM {{path/to/file}} f1 JOIN {{path/to/other_file}} f2 ON (f1.c1 = f2.c1)"`
|
||||||
|
|
||||||
- Format output using an output delimeter with an output header line (note: command will output column names based on the input file header or the column aliases overridden in the query):
|
- Format output using an output delimiter with an output header line (note: command will output column names based on the input file header or the column aliases overridden in the query):
|
||||||
|
|
||||||
`q -D{{delimiter}} -O "SELECT {{column}} as {{alias}} from {{path/to/file}}"`
|
`q -D{{delimiter}} -O "SELECT {{column}} as {{alias}} from {{path/to/file}}"`
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
`screen -S {{session_name}}`
|
`screen -S {{session_name}}`
|
||||||
|
|
||||||
- Start a new deamon and log the output to screenlog.x:
|
- Start a new daemon and log the output to screenlog.x:
|
||||||
|
|
||||||
`screen -dmLS {{session_name}} {{command}}`
|
`screen -dmLS {{session_name}} {{command}}`
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,6 @@
|
||||||
|
|
||||||
`zfs set compression=on {{pool_name/filesystem_name}}`
|
`zfs set compression=on {{pool_name/filesystem_name}}`
|
||||||
|
|
||||||
- Change mountpoint for a filesytem:
|
- Change mountpoint for a filesystem:
|
||||||
|
|
||||||
`zfs set mountpoint={{/my/mount/path}} {{pool_name/filesystem_name}}`
|
`zfs set mountpoint={{/my/mount/path}} {{pool_name/filesystem_name}}`
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# htop
|
# htop
|
||||||
|
|
||||||
> Display dynamic real-time information about running processes. An enchanced version of `top`.
|
> Display dynamic real-time information about running processes. An enhanced version of `top`.
|
||||||
|
|
||||||
- Start htop:
|
- Start htop:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# iptables
|
# iptables
|
||||||
|
|
||||||
> Program that allows to configure tables, chains and rules provided by the Linux kernel firewall.
|
> Program that allows configuration of tables, chains and rules provided by the Linux kernel firewall.
|
||||||
|
|
||||||
- See chains and rules for specific table:
|
- See chains and rules for specific table:
|
||||||
|
|
||||||
|
|
|
@ -33,6 +33,6 @@ comment = (
|
||||||
"Please fix the error(s) and push again."
|
"Please fix the error(s) and push again."
|
||||||
).format(build_id=BUILD_ID, comment_body=test_result)
|
).format(build_id=BUILD_ID, comment_body=test_result)
|
||||||
|
|
||||||
# If its a PR, post a comment on it
|
# If it's a PR, post a comment on it
|
||||||
if PR_NUMBER != "false":
|
if PR_NUMBER != "false":
|
||||||
post_comment(PR_NUMBER, comment)
|
post_comment(PR_NUMBER, comment)
|
||||||
|
|
Loading…
Add table
Reference in a new issue