diff --git a/pages/common/convmv.md b/pages/common/convmv.md index 0ff204960a..0f1597b2db 100644 --- a/pages/common/convmv.md +++ b/pages/common/convmv.md @@ -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}}` diff --git a/pages/common/gpg.md b/pages/common/gpg.md index 2a032dc7d1..99ede58984 100644 --- a/pages/common/gpg.md +++ b/pages/common/gpg.md @@ -1,6 +1,6 @@ # gpg -> Gnu Privacy Guard. +> GNU Privacy Guard. - Sign doc.txt without encryption (writes output to doc.txt.asc): diff --git a/pages/common/ipcs.md b/pages/common/ipcs.md index 775f3e1cb8..d35fa4a167 100644 --- a/pages/common/ipcs.md +++ b/pages/common/ipcs.md @@ -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: diff --git a/pages/common/mysqldump.md b/pages/common/mysqldump.md index 97e2bcec22..b8b2c93545 100644 --- a/pages/common/mysqldump.md +++ b/pages/common/mysqldump.md @@ -1,6 +1,6 @@ # mysqldump -> Backups mysql databases. +> Backups MySQL databases. - Create a backup, user will be prompted for a password: diff --git a/pages/common/q.md b/pages/common/q.md index c3ab89e0d7..5124db5cf1 100644 --- a/pages/common/q.md +++ b/pages/common/q.md @@ -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}}"` diff --git a/pages/common/screen.md b/pages/common/screen.md index 1874e38168..f775ee76b3 100644 --- a/pages/common/screen.md +++ b/pages/common/screen.md @@ -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}}` diff --git a/pages/common/zfs.md b/pages/common/zfs.md index efae34d10a..a387343407 100644 --- a/pages/common/zfs.md +++ b/pages/common/zfs.md @@ -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}}` diff --git a/pages/linux/htop.md b/pages/linux/htop.md index e2eabe5885..7f9514ac49 100644 --- a/pages/linux/htop.md +++ b/pages/linux/htop.md @@ -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: diff --git a/pages/linux/iptables.md b/pages/linux/iptables.md index 5374b8f7fa..fc589558bb 100644 --- a/pages/linux/iptables.md +++ b/pages/linux/iptables.md @@ -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: diff --git a/scripts/send_to_bot.py b/scripts/send_to_bot.py index 541b67210b..dc8f5047f1 100644 --- a/scripts/send_to_bot.py +++ b/scripts/send_to_bot.py @@ -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)