multiple pages: remove superfluous white spaces (#2801)

This commit is contained in:
Balázs Úr
2019-02-24 16:47:41 +01:00
committed by Starbeamrainbowlabs
parent d5d48886fe
commit ad3772d8cb
21 changed files with 23 additions and 23 deletions

View File

@@ -17,7 +17,7 @@
- Run autossh in the background, with no monitoring port, instead relying on SSH keep-alives every 10 seconds to detect failure: - Run autossh in the background, with no monitoring port, instead relying on SSH keep-alives every 10 seconds to detect failure:
`autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" {{ssh_command}}` `autossh -f -M 0 -N -o "ServerAliveInterval 10" -o "ServerAliveCountMax 3" {{ssh_command}}`
- Run autossh in the background, with no monitoring port, no remote shell, exiting if the port forward fails: - Run autossh in the background, with no monitoring port, no remote shell, exiting if the port forward fails:

View File

@@ -1,7 +1,7 @@
# bedtools # bedtools
> A swiss-army knife of tools for genomic-analysis tasks. > A swiss-army knife of tools for genomic-analysis tasks.
> Used to intersect, group, convert and count data in BAM, BED, GFF/GTF, VCF format. > Used to intersect, group, convert and count data in BAM, BED, GFF/GTF, VCF format.
- Intersect two files with respect to the sequences' strand and save the result to {{path/to/output_file}}: - Intersect two files with respect to the sequences' strand and save the result to {{path/to/output_file}}:

View File

@@ -2,7 +2,7 @@
> View the last logged in users. > View the last logged in users.
- View last logins, their duration and other information as read from /var/log/wtmp: - View last logins, their duration and other information as read from /var/log/wtmp:
`last` `last`

View File

@@ -4,7 +4,7 @@
- Listen on a specified port: - Listen on a specified port:
`nc -l {{port}}` `nc -l {{port}}`
- Connect to a certain port (you can then write to this port): - Connect to a certain port (you can then write to this port):

View File

@@ -9,7 +9,7 @@
- Customize the prompt prefix: - Customize the prompt prefix:
`virtualenv --prompt={{prompt_prefix}} {{path/to/venv}}` `virtualenv --prompt={{prompt_prefix}} {{path/to/venv}}`
- Start (select) the environment: - Start (select) the environment:

View File

@@ -15,6 +15,6 @@
`{{arguments_source}} | xargs -I _ {{command}} _ {{optional_extra_arguments}}` `{{arguments_source}} | xargs -I _ {{command}} _ {{optional_extra_arguments}}`
- Parallel runs of up to `max-procs` processes at a time; the default is 1. If `max-procs` is 0, xargs will run as many processes as possible at a time: - Parallel runs of up to `max-procs` processes at a time; the default is 1. If `max-procs` is 0, xargs will run as many processes as possible at a time:
`{{arguments_source}} | xargs -P {{max-procs}} {{command}}` `{{arguments_source}} | xargs -P {{max-procs}} {{command}}`

View File

@@ -1,9 +1,9 @@
# compose # compose
> An alias to a `run-mailcap`'s action compose. > An alias to a `run-mailcap`'s action compose.
> Originally `run-mailcap` is used to mime-type/file. > Originally `run-mailcap` is used to mime-type/file.
- Compose action can be used to compose any existing file or new on default mailcap edit tool: - Compose action can be used to compose any existing file or new on default mailcap edit tool:
`compose {{filename}}` `compose {{filename}}`

View File

@@ -1,6 +1,6 @@
# htop # htop
> Display dynamic real-time information about running processes. An enhanced version of `top`. > Display dynamic real-time information about running processes. An enhanced version of `top`.
- Start htop: - Start htop:

View File

@@ -2,7 +2,7 @@
> Creates an exfat filesystem inside a partition. > Creates an exfat filesystem inside a partition.
- Create an exfat filesystem inside partition 1 on device b (`sdb1`): - Create an exfat filesystem inside partition 1 on device b (`sdb1`):
`mkfs.exfat {{/dev/sdb1}}` `mkfs.exfat {{/dev/sdb1}}`

View File

@@ -1,7 +1,7 @@
# run-mailcap # run-mailcap
> Run MailCap Programs. > Run MailCap Programs.
> Run mailcap view, see, edit, compose, print - execute programs via entries in the mailcap file (or any of its aliases) will use the given action to process each mime-type/file. > Run mailcap view, see, edit, compose, print - execute programs via entries in the mailcap file (or any of its aliases) will use the given action to process each mime-type/file.
- Individual actions/programs on run-mailcap can be invoked with action flag: - Individual actions/programs on run-mailcap can be invoked with action flag:
@@ -13,7 +13,7 @@
- Turn on extra information: - Turn on extra information:
`run-mailcap --action=ACTION --debug {{filename}}` `run-mailcap --action=ACTION --debug {{filename}}`
- Ignore any "copiousoutput" directive and forward output to STDOUT: - Ignore any "copiousoutput" directive and forward output to STDOUT:

View File

@@ -16,4 +16,4 @@
- Demangle C++ symbols: - Demangle C++ symbols:
`nm {{file.o}} | c++filt` `nm {{file.o}} | c++filt`