pages/*: remove spaces around slashes (" / ") (#10349)

pull/23/head
K.B.Dharun Krishna 2023-06-13 22:44:43 +05:30 committed by GitHub
parent 89725aa36f
commit 9add941ec6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 16 additions and 16 deletions

View File

@ -15,7 +15,7 @@
`acme.sh --issue --dns {{dns_cf}} --domain {{example.com}} --challenge-alias {{alias-for-example-validation.com}}` `acme.sh --issue --dns {{dns_cf}} --domain {{example.com}} --challenge-alias {{alias-for-example-validation.com}}`
- Issue a certificate while disabling automatic Cloudflare / Google DNS polling after the DNS record is added by specifying a custom wait time in seconds: - Issue a certificate while disabling automatic Cloudflare/Google DNS polling after the DNS record is added by specifying a custom wait time in seconds:
`acme.sh --issue --dns {{dns_namecheap}} --domain {{example.com}} --dnssleep {{300}}` `acme.sh --issue --dns {{dns_namecheap}} --domain {{example.com}} --dnssleep {{300}}`

View File

@ -16,7 +16,7 @@
`clj -M -m {{namespace}} {{args}}` `clj -M -m {{namespace}} {{args}}`
- Prepare a project by resolving dependencies, downloading libraries, and making / caching classpaths: - Prepare a project by resolving dependencies, downloading libraries, and making/caching classpaths:
`clj -P` `clj -P`

View File

@ -8,7 +8,7 @@
`deemix {{https://www.deezer.com/us/track/00000000}}` `deemix {{https://www.deezer.com/us/track/00000000}}`
- Download track / playlist at a specific bitrate: - Download track/playlist at a specific bitrate:
`deemix --bitrate {{FLAC|MP3}} {{url}}` `deemix --bitrate {{FLAC|MP3}} {{url}}`

View File

@ -7,7 +7,7 @@
`ern create-miniapp {{application_name}}` `ern create-miniapp {{application_name}}`
- Run one or more `MiniApps` in the iOS / Android Runner application: - Run one or more `MiniApps` in the iOS/Android Runner application:
`ern run-{{ios|android}}` `ern run-{{ios|android}}`

View File

@ -1,6 +1,6 @@
# git check-ignore # git check-ignore
> Analyze and debug Git ignore / exclude (".gitignore") files. > Analyze and debug Git ignore/exclude (".gitignore") files.
> More information: <https://git-scm.com/docs/git-check-ignore>. > More information: <https://git-scm.com/docs/git-check-ignore>.
- Check whether a file or directory is ignored: - Check whether a file or directory is ignored:

View File

@ -7,11 +7,11 @@
`less {{source_file}}` `less {{source_file}}`
- Page down / up: - Page down/up:
`<Space> (down), b (up)` `<Space> (down), b (up)`
- Go to end / start of file: - Go to end/start of file:
`G (end), g (start)` `G (end), g (start)`

View File

@ -19,6 +19,6 @@
`nbtscan -e {{192.168.0.1/24}}` `nbtscan -e {{192.168.0.1/24}}`
- Read IP addresses / networks to scan from a file: - Read IP addresses/networks to scan from a file:
`nbtscan -f {{path/to/file.txt}}` `nbtscan -f {{path/to/file.txt}}`

View File

@ -1,6 +1,6 @@
# nmap # nmap
> Network exploration tool and security / port scanner. > Network exploration tool and security/port scanner.
> Some features only activate when Nmap is run with root privileges. > Some features only activate when Nmap is run with root privileges.
> More information: <https://nmap.org>. > More information: <https://nmap.org>.

View File

@ -19,6 +19,6 @@
`pastel distinct {{8}}` `pastel distinct {{8}}`
- Get a list of all X11 / CSS color names: - Get a list of all X11/CSS color names:
`pastel list` `pastel list`

View File

@ -24,7 +24,7 @@
`samtools flagstat {{sorted_input}}` `samtools flagstat {{sorted_input}}`
- Count alignments to each index (chromosome / contig): - Count alignments to each index (chromosome/contig):
`samtools idxstats {{sorted_indexed_input}}` `samtools idxstats {{sorted_indexed_input}}`

View File

@ -1,6 +1,6 @@
# swig # swig
> Generate bindings between C / C++ code and various high level languages such as JavaScript, Python, C#, and more. > Generate bindings between C/C++ code and various high level languages such as JavaScript, Python, C#, and more.
> It uses special .i or .swg files to generate the bindings (C/C++ with SWIG directives, then outputs a C/C++ file that contains all the wrapper code needed to build an extension module. > It uses special .i or .swg files to generate the bindings (C/C++ with SWIG directives, then outputs a C/C++ file that contains all the wrapper code needed to build an extension module.
> More information: <http://www.swig.org>. > More information: <http://www.swig.org>.

View File

@ -1,6 +1,6 @@
# ip # ip
> Show / manipulate routing, devices, policy routing and tunnels. > Show/manipulate routing, devices, policy routing and tunnels.
> Some subcommands such as `ip address` have their own usage documentation. > Some subcommands such as `ip address` have their own usage documentation.
> More information: <https://www.man7.org/linux/man-pages/man8/ip.8.html>. > More information: <https://www.man7.org/linux/man-pages/man8/ip.8.html>.

View File

@ -1,6 +1,6 @@
# tc # tc
> Show / manipulate traffic control settings. > Show/manipulate traffic control settings.
> More information: <https://manned.org/tc>. > More information: <https://manned.org/tc>.
- Add constant network delay to outbound packages: - Add constant network delay to outbound packages:

View File

@ -1,6 +1,6 @@
# trash # trash
> A CLI for managing the trashcan / recycling bin. > A CLI for managing the trashcan/recycling bin.
> More information: <https://github.com/andreafrancia/trash-cli>. > More information: <https://github.com/andreafrancia/trash-cli>.
- Delete a file and send it to the trash: - Delete a file and send it to the trash:

View File

@ -11,7 +11,7 @@
`whiptail --title "{{title}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}` `whiptail --title "{{title}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}`
- Customise the text on the yes / no buttons: - Customise the text on the yes/no buttons:
`whiptail --title "{{title}}" --yes-button "{{text}}" --no-button "{{text}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}` `whiptail --title "{{title}}" --yes-button "{{text}}" --no-button "{{text}}" --yesno "{{message}}" {{height_in_chars}} {{width_in_chars}}`