Fix a few typos

coverage
HairyFotr 2017-07-20 20:53:15 +02:00 committed by Agniva De Sarker
parent 6bf26c0e0b
commit e0ccb7147a
10 changed files with 11 additions and 11 deletions

View File

@ -6,6 +6,6 @@
`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}}`

View File

@ -1,6 +1,6 @@
# gpg
> Gnu Privacy Guard.
> GNU Privacy Guard.
- Sign doc.txt without encryption (writes output to doc.txt.asc):

View File

@ -1,6 +1,6 @@
# 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:

View File

@ -1,6 +1,6 @@
# mysqldump
> Backups mysql databases.
> Backups MySQL databases.
- Create a backup, user will be prompted for a password:

View File

@ -2,7 +2,7 @@
> 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}}"`
@ -22,6 +22,6 @@
`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}}"`

View File

@ -10,7 +10,7 @@
`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}}`

View File

@ -22,6 +22,6 @@
`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}}`

View File

@ -1,6 +1,6 @@
# 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:

View File

@ -1,6 +1,6 @@
# 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:

View File

@ -33,6 +33,6 @@ comment = (
"Please fix the error(s) and push again."
).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":
post_comment(PR_NUMBER, comment)