Commit Graph

3797 Commits (e597948273e9b5e13b52ad6447e6ff843b5960c3)

Author SHA1 Message Date
bl-ue 7165d0e347
vercel: fix typo (#5469) 2021-03-17 20:57:56 -03:00
bl-ue 6404db9ca0
tldrl: add alias to tldr-lint (#5450)
* tldrl: rename to tldr-lint

* tldrl: add page

* tldr-lint: s/tldrl/tldr-lint/

* tldr-lint: prefer long options

* e
2021-03-17 01:01:58 +03:00
marchersimon 23e1c939fd
mysqld: add page (#5452) 2021-03-16 07:25:48 -04:00
Axel Navarro 8402bf0fa6
ls: fix size units in example description (#5451) 2021-03-15 15:57:50 -04:00
Axel Navarro 4968284965
gh-config: add set pager example (#5448) 2021-03-15 19:34:36 +01:00
Axel Navarro 35d4a1337f
ncc: add page (#5447) 2021-03-15 19:32:48 +01:00
Axel Navarro 160721def0
pgrep: add more info link (#5446) 2021-03-15 14:29:40 -04:00
Starbeamrainbowlabs 8c38dc1dd7
nbtscan: add page (#5434) 2021-03-14 02:20:34 -03:00
bl-ue 8f2ed246f7
ab: update grammar; update link (#5433) 2021-03-13 21:44:59 +00:00
marchersimon 8c8445aca4
arduino: add page (#5389) 2021-03-13 21:43:46 +00:00
Florian B 79ebb31e06
yapf: add page and Dutch translation (#5435) 2021-03-13 21:29:43 +00:00
bl-ue d2f741b155 dig: simplify more information link 2021-03-13 21:00:12 +00:00
marchersimon 2a64f923f4
bssh, bvnc, bshell: add pages (#5419) 2021-03-13 20:58:45 +00:00
marchersimon e1bb083c5b
arduino-builder: add page (#5391) 2021-03-13 15:57:48 -05:00
marchersimon 15ffa6c8db
platformio: add alias page (#5405) 2021-03-13 20:28:58 +00:00
Axel Navarro 3192ab066b
bundletool, bundletool-validate: add page (#5263) 2021-03-12 19:04:37 -05:00
marchersimon 6755015544
bootctl: add page (#5418) 2021-03-12 07:42:13 -05:00
sk1985 ccf49a93d3
shift: add page (#5415) 2021-03-12 13:18:05 +01:00
Stanley Ulili 59fef1dcf0
dig: add more examples (#5416) 2021-03-11 19:55:01 -03:00
Managor 585e1415c9
transmission-remote: fix to absolute paths (#5412) 2021-03-11 07:57:03 -05:00
marchersimon 2c0be24347
gimp: add page (#5399) 2021-03-11 20:40:06 +08:00
marchersimon 383bdc680e
pio: add page (#5404) 2021-03-11 20:37:32 +08:00
marchersimon 1c3144dba6
pio-boards: add page (#5409) 2021-03-11 20:36:36 +08:00
marchersimon c2156e1b33
pio-account: add page (#5410) 2021-03-10 20:27:09 +00:00
Matthew Peveler 97cddc20f2
g++: update page title to match file name (#5088) 2021-03-10 20:34:48 +01:00
Pierre Rudloff 3f25e8f0a0
test, [: add page, improve examples (#5205) 2021-03-10 14:24:11 -05:00
Jake Vossen baae36eb46
nload: add page (#5395) 2021-03-10 12:27:32 -05:00
Axel Navarro 55d5388578
gh-repo: add examples for list subcommand (#5358) 2021-03-10 14:27:12 +00:00
Axel Navarro 1722117f90
qdbus: add page (#5360) 2021-03-10 12:19:30 +01:00
Mikey Garcia bbbe632af2
watson: add 'remove' and 'edit' commands (#5393) 2021-03-09 22:09:28 +01:00
Andy Atkinson fb0d9dd7dd
pgbench: add page (#5388) 2021-03-09 22:04:17 +01:00
Fabio Serragnoli ee3d450884
scala: add start interpreter with classpath (#5354) 2021-03-08 17:51:13 -03:00
Axel Navarro 7cd7f64c7d
next: add page (#5385) 2021-03-08 17:50:30 -03:00
Axel Navarro cc5b716340
gh-pr: add examples for edit subcommand (#5359) 2021-03-08 20:27:00 +00:00
bl-ue 672a67a2db
if: modernize (#5351) 2021-03-08 20:06:24 +00:00
marchersimon 7a3f7174af
musescore: add page (#5368) 2021-03-08 07:57:44 -03:00
bl-ue 56c45a0e76
theHarvester: rename to theharvester (#5380) 2021-03-08 10:38:07 +00:00
bl-ue a36cdd1b3a
R: rename to r (#5379) 2021-03-08 08:43:20 +00:00
Matthias Lübken 00e00396a4
base32, base64: fix -D flag (#5234) 2021-03-07 19:58:11 -03:00
Tan A 66aeeb8690
git-difftool: highlight git diff in command description (#5338) 2021-03-06 17:31:47 -03:00
Eric Nielsen 5e56c38d37
scp: fix -P example (#5343)
The -P parameter comes first to use a specific port.
2021-03-06 17:29:14 -03:00
Tan A 8d3b7a4bd4
vectorize-pixelart: add page (#5346) 2021-03-06 07:52:08 -05:00
Eric Nielsen b96c886c4f
if: actually use if to test a command's success (#5344)
Using `{{command}} && {{command1}} || {{command2}}` does not actually
work like if, and it's misleading to teach that to users. The difference
is that in the above construct, command2 gets executed if command1
fails, which does not happen in a real if as in `if {{command}}; then
{{command1}}; else {{command2}}; fi`
2021-03-04 10:16:42 -05:00
Tan A 83b97fc248
speed-test: add page (#5339) 2021-03-04 08:16:55 -05:00
Tan A a47d70b7dd
betty: add page (#5341) 2021-03-03 12:37:52 -05:00
Owen Voke 968a6ef4a4
fast: add page (#5342) 2021-03-03 11:13:47 -03:00
Tan A 0ea2adae09
telnet: add Star Wars ASCII animation example (#5323) 2021-03-03 08:56:40 -03:00
Hugh Wimberly c3b00af379
pre-commit: add page (#5314) 2021-03-02 07:11:46 -05:00
tassadarliu ad2fd7c87e
pngcheck: add page (#5310) 2021-02-28 12:11:59 -05:00
marchersimon 0589644d01
latex, pdftex, tex, texdoc, texliveonfly, tlmgr: add page (#5294) 2021-02-28 08:33:40 -05:00