Waldir Pimenta
04fad240fe
curl: remove -I from auth example ( fixes #1406 ) ( #1417 )
...
(also, minor tweaks to some of the descriptions)
2017-06-26 06:13:01 -04:00
Andrew Prentice
58826bfdab
ffprobe: add page ( #1414 )
2017-06-23 19:04:48 +01:00
Waldir Pimenta
ec794ec2dc
umount: make descriptions more explicit ( #1408 )
...
* umount: make descriptions more explicit
* umount: clarify main description, per PR disc.
2017-06-23 11:17:00 +01:00
luk3yx
0fbce892d8
sshpass: remove unmatched quote mark ( #1413 )
2017-06-18 23:27:11 +01:00
luk3yx
f507c81857
sshpass: add page ( #1411 )
2017-06-18 20:12:00 +01:00
Waldir Pimenta
87fb4e13bd
git-config: overhaul page ( #1402 )
...
- expand description of local and global options
- adjust example descriptions for clarity
- change the descriptions of the get/set/remove examples to be more generic
- change the alias example to a more useful one
- use "configuration entries" instead of "configuration options" to match both preset options and aliases
2017-06-15 23:30:21 +01:00
Alexey B
dea97777c4
7z: fix example of -t option ( #1405 )
2017-06-15 12:21:34 +01:00
Gabriel Totev
bf37b88bab
valgrind: add page ( #1407 )
...
* valgrind: add page
* valgrind: tweak Memcheck example
Provide alternate, clearer syntax that functions the same and update
description accordingly.
* valgrind: correct program description
* valgrind: add list of common tools
* valgrind: remove general form example and add no-option example
* valgrind: replace period with colon in example 1
2017-06-12 13:07:22 +01:00
Starbeamrainbowlabs
10e9f9d2af
badblocks: add page ( #1399 )
2017-06-11 14:30:40 +01:00
Gabriel Totev
1d2cbd0f07
nasm: add page ( #1401 )
2017-06-10 00:03:16 +01:00
Waldir Pimenta
5085853d51
fping: a IP --> an IP
2017-06-09 22:50:23 +01:00
Max Xu
4bbb5c8876
fping: add page ( #1395 )
2017-06-08 15:55:51 +05:30
Waldir Pimenta
b4dc9ec224
cmake: use -H -B trick for out-of-src build
...
As initially discussed in #1379 . This removes the need to use `mkdir` and `cd`. Inspired by this post:
https://www.reddit.com/r/programming/comments/6b9r19/how_to_build_a_cmakebased_project/dhlfh05/
2017-06-08 09:54:38 +05:30
Starbeamrainbowlabs
03d1622cfc
Add multithreading example ( #1398 )
2017-06-06 19:56:14 +01:00
Zhou Fangyi
5a17e68729
curl: add separate entry for header & HTTP method; clarify entry for JSON ( #1396 )
2017-06-06 08:23:00 +01:00
Thales Mello
efedbb2835
gist: add page ( #1389 )
...
* Include gist page
* Fix linting errors
* Quote "hello world" in the echo commnad
* Change wording to make explanation clearer
* Further simplify descriptions of gist command
* Simplify description of the update gist command
2017-05-29 16:02:09 +01:00
Starbeamrainbowlabs
4c2cd7ecf9
keepass2: add page ( #1394 )
2017-05-29 00:58:29 +05:30
David Haynes
5ea8b54d90
hugo: omit subject
...
- Remove uses of "your" and "you"
2017-05-26 20:02:52 +05:30
David Haynes
474f188b88
hugo: modify language
...
- hugo -> Hugo
- lowercase the description
- plain URL
- remove the extension token
- do not use relative references
- modify the buildDraft example to standalone and change the wording slightly
- modify the "watch for changes" wording slightly
2017-05-26 20:02:52 +05:30
David Haynes
0dea4539f3
hugo: add page
...
- Add in `hugo` commands essential to getting a site up and running.
- This is defined as:
- A site existing
- A theme existing
- A page existing
- The site being built in some manner (optionally being served through the webserver)
First pass on verbage.
2017-05-26 20:02:52 +05:30
Waldir Pimenta
e92592cc2c
cowsay: remove redundant text in main description
2017-05-26 13:39:10 +01:00
Noah Overcash
834eefb2d5
cowsay: add listing command
2017-05-26 13:39:10 +01:00
Starbeamrainbowlabs
a50427e89f
mktemp.md: add page ( #1393 )
2017-05-26 10:28:13 +01:00
Starbeamrainbowlabs
497a561ae1
Update quota.md
2017-05-24 09:32:16 +01:00
kalebo
d0ebfa44a5
Tweaked quota example
2017-05-24 09:32:16 +01:00
Vivek Krishnakumar
db766044de
mosh: add page ( #1384 )
2017-05-24 12:03:32 +05:30
Waldir Pimenta
6b1e4f24ab
cmake: add mkdir to the out-of-source build ex.
2017-05-22 20:41:16 +01:00
Waldir Pimenta
08da564f80
mutt: add reference to draft format
...
as discussed in PR #1258
2017-05-22 16:43:10 +01:00
Waldir Pimenta
efbf0cc51e
perl: tweak the -0 example
2017-05-22 19:47:03 +05:30
Waldir Pimenta
dc9547925f
perl: swap -M example with -0, for multiline regex
...
For completeness: the -0 option is actually used to specify the input record separator (as an octal number).
Without it, the record separator is the newline character, i.e. the files are processed line by line
(which doesn't allow find-replace expressions that include newlines to work).
According to the [documentation](http://perldoc.perl.org/perlrun.html#Command-Switches ),
using plain `-0` is not guaranteed to have the effect of parsing the entire file,
because if the file does contain characters with octal value equal to the parameter passed to (or implied by) the -0 option,
these characters will be treated as line breaks.
However, if the value exceeds 377<sub>8</sub> (i.e. 255), it won't be matched to characters on the file.
777 is the preferred convention within that exceptional range, as the highest value that keeps to 3 octal digits.
Here we're forgoing such details and using -0 anyway, since for most cases this will be enough.
2017-05-22 19:47:03 +05:30
bigspennyj
04ecf81efc
mutt: add page ( #1258 )
2017-05-22 11:52:55 +05:30
Starbeamrainbowlabs
ca3ee12c17
prosodyctl: add page ( #1382 )
2017-05-19 13:33:25 +05:30
Starbeamrainbowlabs
93348478a1
lua: add page ( #1381 )
2017-05-19 08:47:18 +01:00
Waldir Pimenta
595c4eb234
git-reset: add simpler --hard example
2017-05-18 17:25:09 +01:00
Waldir Pimenta
05780d6183
git-checkout: "modifications" --> "changes"
2017-05-18 17:24:52 +01:00
Waldir Pimenta
6f9dbe9fce
git-checkout: mention reset, add single-file ex.
2017-05-18 17:24:52 +01:00
Waldir Pimenta
88eea86117
cmake: directory --> folder; fix typo
2017-05-16 11:37:47 +01:00
Damian Peterson
1ceb440ea4
vimdiff: add page ( #1373 )
2017-05-14 21:27:16 +01:00
Wolfgang Lutz
550ede5cfb
fix typos using misspell ( #1374 )
2017-05-12 10:29:18 +01:00
Starbeamrainbowlabs
c0616697ed
jpegoptim: add page ( #1370 )
...
* New command: jpegoptim
* Update jpegoptim.md
2017-05-10 20:46:18 +01:00
Waldir Pimenta
c9063d15b9
telnet: improve descriptions ( #1353 )
...
* telnet: improve descriptions
also format "x" as a token in the last example.
* telnet: update per code review
2017-05-04 20:50:30 +01:00
Waldir Pimenta
7ca686634d
jq: clarify descriptions ( #1361 )
2017-05-04 09:35:38 +01:00
Waldir Pimenta
776fdcf77a
cmake: fix syntax and adjust per code review
2017-05-04 08:46:54 +01:00
PFCKrutonium
d3fed3b31f
cmake: add page ( closes #1172 )
2017-05-04 08:46:54 +01:00
Waldir Pimenta
7a9c755e4e
pygmentize: various tweaks ( #1355 )
...
* pygmentize: various tweaks
- adjust punctuation in main description and first example's description
- mention "list" (rather than "show") in the -L examples, to improve memorability
- explain what lexers are
- clarify which of the parameters are input and output filenames
- simplify last example
* make -O example more didactic
References:
- http://pygments.org/docs/cmdline/#options-and-filters
- http://pygments.org/docs/formatters/#HtmlFormatter
* pygmentize: changes per code review
* pygentize: fix typos
2017-05-03 20:54:49 +01:00
Waldir Pimenta
97265cba29
cal: move from pages/common/ to pages/osx/, so the content corresponds to the command version
2017-05-02 08:10:49 +01:00
Waldir Pimenta
b893232f48
yesod: tweak main description ( #1362 )
2017-05-01 20:11:23 +01:00
Waldir Pimenta
85212343a0
timew: tweaks to descriptions
2017-05-01 15:00:12 +01:00
Waldir Pimenta
3b0cf23bac
pm2: add article in last two examples
2017-05-01 11:16:05 +01:00
Moti Korets
2f03bc1362
at: add page, atq: add page, atrm: add page, and batch: add page ( #1344 )
...
commands to queue commands execution at specified time
or when system load allows
2017-05-01 11:06:06 +01:00
Waldir Pimenta
2a4379ceea
git-checkout: correct checkout of remote branch ( #1359 )
...
As described in http://stackoverflow.com/a/9537923 (paraphrased below):
> You need to create a local branch that tracks a remote branch.
> The following command will create a local branch
> tracking the remote branch of the same name.
> When you push your changes the remote branch will be updated.
>
> `git checkout --track [remotename]/[branch]`
>
> This is a shorthand for `git checkout -b [branch] [remotename]/[branch]`.
>
> For git 1.7.2.3 and higher this is enough: `git checkout daves_branch`
>
> Note that with recent git versions,
> **this will command not create a local branch and will put you in a 'detached HEAD' state.**
> If you want a local branch, use the --track option.
> Full details here: http://git-scm.com/book/en/v2/Git-Branching-Remote-Branches#Tracking-Branches
2017-04-30 11:17:03 +01:00
Waldir Pimenta
433370e2ad
change all keyboard shortcuts to have spaces around the + sign ( #1356 )
2017-04-28 23:34:51 +01:00
Waldir Pimenta
7e1f06ade4
standardize format of keyboard shortcuts ( #1354 )
...
* fix capitalization of keyboard shortcuts (elinks, tmux, screen)
* adjust formatting of keyboard shortcuts (tail, xsel)
2017-04-28 08:44:50 +01:00
Waldir Pimenta
81c7f52e9f
wordgrinder: minor tweaks to descriptions
2017-04-28 08:33:05 +01:00
Agniva De Sarker
9af9eee235
minor update
...
adding a space after comma
2017-04-28 08:28:19 +01:00
Rudinski Zvonimir
4a0662a95e
minor changes
2017-04-28 08:28:19 +01:00
Agniva De Sarker
e9a443b189
simplify wordgrinder
...
- Removing the word terminal because its implicit
- Mentioning that it loads a blank document by default
- Removing 'press' to maintain uniformity with other pages like `rtv`
2017-04-28 08:28:19 +01:00
Agniva De Sarker
d49b95fc53
Simplify pygmentize
...
- Simplify main description
- Mentioning that language is inferred from file extension
- Giving a concrete example for another lexer.
2017-04-28 08:28:19 +01:00
Agniva De Sarker
5c278bdf69
Update mc.md
...
- Usually, we do not use another command in the example of one command's description.
- Using the second line of the heading to explain further.
2017-04-28 08:28:19 +01:00
Zvonimir Rudinski
053d8dbeb0
linter fixes
2017-04-28 08:28:19 +01:00
Rudinski Zvonimir
7d360fface
add pygmentize
2017-04-28 08:28:19 +01:00
Rudinski Zvonimir
6ae8e8761a
Added pages for mc, tpp and wordgrinder
2017-04-28 08:28:19 +01:00
Waldir Pimenta
2a359234ba
elinks: minor tweaks to command descriptions
2017-04-28 00:01:06 +01:00
Waldir Pimenta
13539295a4
elinks: fix typo (confusion of ANSI vs. ASCII)
2017-04-27 23:59:42 +01:00
Waldir Pimenta
45d9ef5b6a
docker: minor tweak to first description
...
change "List" from a noun to a verb, to match the project's guidelines.
2017-04-27 23:55:32 +01:00
Waldir Pimenta
fb7e3969fe
wuzz: add primary command; de-capitalize descs
2017-04-26 13:06:27 +01:00
Agniva De Sarker
331c97b209
wrapping some items in tokens
2017-04-26 13:06:01 +01:00
Waldir Pimenta
4da1c1c3df
git-rebase: improve desc of second -i example
2017-04-26 13:06:01 +01:00
Waldir Pimenta
e8dd7e0b57
rephrase --onto example; add in-place rebase
2017-04-26 13:06:01 +01:00
Waldir Pimenta
8f18647c82
git-rebase: hopefully clarify some points
2017-04-26 13:06:01 +01:00
Waldir Pimenta
c3146ede2a
perl: improve descriptions of -pie examples
2017-04-26 10:32:58 +01:00
morrme
8b85207f35
perl: add pie example per issue #1239
2017-04-26 10:32:58 +01:00
Waldir Pimenta
cd38a006d8
find: slightly reword the -not -path example
2017-04-25 22:50:51 +01:00
abactel
1e15c9cad3
timew: add page ( #1343 )
...
timew: add page
2017-04-23 10:22:15 +01:00
Waldir Pimenta
69c12013b3
lsof: shorten main desc, expand PID acronym ( #1346 )
2017-04-22 19:44:03 +01:00
Waldir Pimenta
777073fcb8
id3tag: minor tweaks ( #1347 )
2017-04-22 14:37:16 +01:00
Waldir Pimenta
df46736db7
git-imerge: add "abort" example ( #1339 )
2017-04-21 10:45:54 +01:00
Waldir Pimenta
9475cd3589
git-clean: fix verb tense
2017-04-21 00:33:36 +05:30
Eliot Sykes
4d80ebdc16
Typo fix. Simplify git exclude path.
2017-04-21 00:33:36 +05:30
Eliot Sykes
100320e3a6
Add git clean -f, -x options
2017-04-21 00:33:36 +05:30
Eliot Sykes
18b9f11a29
git-clean: add page
2017-04-21 00:33:36 +05:30
Starbeamrainbowlabs
3f53e3282f
composer: add page ( #1329 )
2017-04-20 16:57:57 +05:30
Waldir Pimenta
5cb62ebbff
git-show: various tweaks ( #1341 )
...
- adjust punctuation & spacing in main description
- adjust descriptions ("changes" --> "information", and explicitly list which info is returned in the first example)
- use a concrete example for the tilde notation
- add abbreviated example
2017-04-19 21:25:28 +01:00
Waldir Pimenta
01a9717bc9
curl: tweak desc of last example, per code review
2017-04-19 19:30:33 +01:00
Waldir Pimenta
e6a54d891a
curl: remove secure/insecure ambiguity
2017-04-19 19:30:33 +01:00
Waldir Pimenta
b051c298d0
curl: spell out the --insecure option
2017-04-19 19:30:33 +01:00
Waldir Pimenta
3acc0d64b8
curl: simplify last example ( #1246 )
2017-04-19 19:30:33 +01:00
Agniva De Sarker
9fd6e9cf11
cp: fix travis error
2017-04-19 10:20:18 +01:00
Waldir Pimenta
c3d4b4ac55
cp: phrase -i option the same way as the -v option
2017-04-19 10:20:18 +01:00
Waldir Pimenta
faed93cbae
cp: remove leading / from paths; add -i example
2017-04-19 10:20:18 +01:00
Waldir Pimenta
00656cd8c4
cp: remove shell expansion examples, add -r
2017-04-19 10:20:18 +01:00
Waldir Pimenta
da10202a3d
cp.md: major overhaul
...
- change "directory" to "folder" (more beginner-friendly)
- use an extension to distinguish file paths from folder paths
- reword some of the descriptions for clarity
- include examples to clarify when the target argument defines the actual copy, and when it defines the folder where to put the copy
- add an example to copy contents of a folder into another (existing) folder
2017-04-19 10:20:18 +01:00
Waldir Pimenta
e59d19a00d
cowsay: minor adjustment to main desc.
2017-04-18 22:20:43 +01:00
alefir
b71c9cdcf3
git-show: add page ( #1331 )
2017-04-18 22:39:07 +05:30
Matt Terwilliger
11e745572e
Recursive scp arguments reversed ( #1321 )
...
* Recursive scp arguments reversed
The command to "copy [...] on a remote host to a local
directory" in the current scp tldr page was backwards.
scp arguments take the form `scp from to`.
* add the word from for clarity
2017-04-18 09:07:46 -04:00
Waldir Pimenta
8493ee06ba
cowsay: remove overly complex example, reword desc ( #1323 )
2017-04-18 09:06:20 -04:00
Waldir Pimenta
aa22af277a
od: overall copyedit
...
- reworded command description
- reworded example descriptions for clarity and explicitness
- changed order and content of examples, to introduce options gradually
- formatted all user-selectable parts (option values and arguments) in the token markup
2017-04-18 10:24:50 +05:30
Yuri Slobodyanyuk
8b79edda0c
Update od.md
...
yet another fix
2017-04-18 10:24:50 +05:30
Yuri Slobodyanyuk
aa9d4d5887
Update od.md
...
still more fixes
2017-04-18 10:24:50 +05:30
yuri-sk
aface6c32d
Update od.md
2017-04-18 10:24:50 +05:30
yuri-sk
25a9bc4ae4
Update od.md
...
Fixed
2017-04-18 10:24:50 +05:30
yuri-sk
de1d5b05fa
Add odd command to the common
...
Not much to comment - https://linux.die.net/man/1/od
Thanks
2017-04-18 10:24:50 +05:30
Waldir Pimenta
1fcc48e01a
mailx: various tweaks
...
- restore "content" as opposed to "body", per PR discussion
- various improvements to command descriptions
2017-04-17 10:54:29 +05:30
Starbeamrainbowlabs
092294370d
mailx: Improve the readability of the descriptions
2017-04-17 10:54:29 +05:30
Jeef
fdfa144cb0
tput: add two examples ( #1299 )
2017-04-15 12:29:28 +01:00
Waldir Pimenta
952eca58e8
tesseract: minor tweak to the first example's desc
2017-04-15 12:18:50 +01:00
Waldir Pimenta
16969bf3dc
import: minor tweaks ( #1322 )
2017-04-15 10:02:09 +01:00
Waldir Pimenta
f12a12b792
svgo: add page ( #1061 )
2017-04-15 09:52:17 +01:00
morrme
b69c14b404
curl: improve last example per issue #1246 ( #1326 )
2017-04-15 09:49:12 +01:00
Jade Thornton
8dbc49c36b
killall: add page ( #1317 )
2017-04-09 22:11:36 +05:30
Ismail Arafa
ece6982be9
Create browser-sync.md ( #1287 )
2017-04-06 07:41:22 -04:00
Vincent Yang
7fd90b1d58
pm2: add page ( #1306 )
...
* pm2: add page
* Make Travis happy
* Added pm2 restart
* Simplifying examples
* Fixed typo
2017-04-06 07:40:06 -04:00
Jon LaBelle
7549db275b
id3tag: Trim trailing whitespace in first example
2017-03-26 23:46:23 +05:30
Daniel Senff
3276058ed9
id3tag.md: add page ( #1280 )
2017-03-25 12:06:30 +05:30
Daniel Campoverde
a409df6f28
yesod: add page ( #1302 )
2017-03-23 09:37:05 +05:30
Jeef
3f1a853c93
Update elinks.md
2017-03-17 21:43:44 +05:30
Jeef
6396235a1c
Create elinks.md
2017-03-17 21:43:44 +05:30
Jeef
7103d8fa31
docker: added rm command ( #1297 )
2017-03-16 10:07:17 +05:30
Xiang Wang
4626735021
find: ignore given directory ( #1289 )
...
* find path while excluding certain directory
* delete the `find {{root_path}} -empty` command to meet the demand of 8 commands at most
* tokenize the demo parameter
2017-03-10 09:48:29 -05:00
Jeef
7ced4bbeeb
Merge pull request #1288 from YangVincent/master
...
wuzz: add page
2017-03-10 09:46:01 -05:00
Alfred Bez
cd29c9775f
mtime argument (find command) expect numeric value
2017-03-10 10:13:34 +05:30
Jeef
3ac4ed9216
Merge pull request #1292 from Risen-phoenix/master
...
hangups: add page
2017-03-09 09:44:40 -05:00
Risen-phoenix
e8623030f1
Update hangups.md
2017-03-08 11:21:17 -05:00
Vincent Yang
fc379e3ecd
updated description for wuzz
2017-03-07 23:48:28 -08:00
Agniva De Sarker
c0ba2afc2b
zip.md: wrap compression level in tokens
2017-03-07 23:59:12 +05:30
Jaehoon Choi
eee1e72ba2
`zip`: explain how to specify the compression level
2017-03-07 23:59:12 +05:30
Risen-phoenix
24b014d3e9
Update hangups.md
2017-03-07 12:01:53 -05:00
Risen-phoenix
f253004776
hangups: add page
2017-03-07 11:59:27 -05:00
Vincent Yang
aff5bbe9ef
fix formating to please unit tests
2017-03-01 17:30:30 -08:00
Vincent Yang
77faf2a0f1
added wuzz
2017-03-01 16:33:18 -08:00
Agniva De Sarker
5426316b23
Adding clarity on how to enter the password
2017-03-01 22:01:50 +05:30
Josa Gesell
50d33b2cab
msmtp: add page
2017-03-01 22:01:50 +05:30
Jakub Kubryński
b937aa13a8
Add description how to use lsof by PID
2017-03-01 21:13:17 +05:30
lukasschlueter
a0f37ef1ef
consul: add page ( #1277 )
2017-02-28 16:01:38 +05:30
kalebo
262561ca78
Changing wording in scale example
...
* 'decimal places' used instead of 'precision'
* Implicit example of using scale
2017-02-26 10:26:11 +05:30
kalebo
e3f1d3377f
simplification
...
* merged lines about interactive mode and mathlib
2017-02-26 10:26:11 +05:30
kalebo
1b5152e58f
Added a line about interactive usage with mathlib
...
Usually `bc` isn't very useful if it doesn't return have floating point number where appropriate. e.g., 3/4 returns 0 when started with `-i` but for most users they would expect 0.75 to be returned so the argument `-l`does what the user would generally want.
2017-02-26 10:26:11 +05:30
Agniva De Sarker
abd52f0ce8
ssh-copy-id: Remove default key example
2017-02-25 17:49:50 +05:30
Josa Gesell
65f45a1517
ssh-copy-id: move to common
2017-02-25 17:49:50 +05:30
Will Moore
9dec2c1e2f
Remove -R Option
...
Removed:
> - Enable output of ANSI colors:
> `git diff --color | less -R`
2017-02-25 09:23:51 +05:30
Will Moore
d3011a05fa
Add missing colon
2017-02-25 09:23:51 +05:30
Will Moore
635caad870
Open current file in editor
2017-02-25 09:23:51 +05:30
Adrian Sieber
b4f9a57471
tesseract: add page ( #1267 )
2017-02-24 13:09:35 +05:30
Jeff Stein
85d1ab3400
updated the mimetime ref
2017-02-24 12:50:37 +05:30
Jeef
c63ef4d8d6
git-log: add graph view ( #1275 )
2017-02-24 12:50:09 +05:30
Jeef
8fdc908325
x11vnc, xdotool, rev: add pages ( #1264 )
2017-02-21 09:22:56 +05:30
Jeef
04523dcf11
Update cowsay.md
2017-02-19 14:37:02 +05:30
Jeef
8add923bd2
Update cowsay.md
2017-02-19 14:37:02 +05:30
Jeef
39c288d977
Update cowsay.md
...
Print for the different options
2017-02-19 14:37:02 +05:30
Jeef
008080dc78
import: add page ( #1255 )
2017-02-19 14:36:26 +05:30
Waldir Pimenta
5b977738d1
logstash: minor tweaks to the main description
2017-02-03 19:55:05 +00:00
Abhijit Paul
a969d6ebd8
logstash: add page ( #1245 )
2017-02-03 19:52:44 +00:00
Waldir Pimenta
b8dd048a93
curl: minor punctuation fix
2017-02-02 11:35:43 +00:00
Victor Jacobs
2b0bc0be91
ansible-playbook: add page ( #1257 )
2017-01-27 09:39:22 +00:00
Jeef
43c3e68c5b
sox: add example of changing the volume of a file ( #1242 )
2017-01-26 22:46:42 +00:00
Yuri Slobodyanyuk
62c4fba279
nslookup: add page ( #1174 )
...
Non interactive use of nslookup on *nix-like systems: https://linux.die.net/man/1/nslookup
2017-01-24 21:22:44 +00:00
abactel
3f1209a857
task: Increased readability
...
Changed all capital "ID" to lowercase "id", as agnivade asked.
2017-01-24 01:23:28 +05:30
abactel
d3ba715c23
task: fix grammar
...
Changed 'complete task' to 'mark task as completed' as waldyrious asked.
2017-01-24 01:23:28 +05:30
abactel
7dea142187
task: add page
2017-01-24 01:23:28 +05:30
Waldir Pimenta
b7d34523f6
git-checkout: also works for remote branches ( #1238 )
2017-01-18 14:43:53 +00:00
Waldir Pimenta
83db189282
git-branch: change "upstream" --> "remote"
...
"upstream" is often used as a synonym for "remote", but we probably should avoid promoting that equivalence, since the terms "upstream" and "downstream" have specific meanings in the context of software dependency, which don't necessarily map with the meanings of "local" and "remote" in the context of computer networks in general (and distributed networks of git repositories in particular).
2017-01-15 21:46:29 +05:30
Waldir Pimenta
5e6ee61bb7
oops, mixed push --prune with fetch --prune
2017-01-15 21:46:29 +05:30
Waldir Pimenta
16f0fc9d50
git-push: revamp page
...
hopefully making it more useful and explicit
2017-01-15 21:46:29 +05:30
jcherqui
672878abd0
curl: add -I option to the -u example ( #1240 )
2017-01-15 15:47:30 +00:00
Waldir Pimenta
5582e23e8a
git-fetch: --prune doesn't delete local branches ( #1237 )
...
`git fetch --prune` deletes the local *references* to upstream branches (i.e. entries in `.git/refs/remotes/`), but the local *branches* that tracked them (i.e. entries in `.git/refs/heads/`) are kept.
2017-01-15 10:49:13 +00:00
Bob Strecansky
7a2208f2ec
Fixing dependencies
2017-01-12 09:31:14 +05:30
Waldir Pimenta
c5eb598d5c
make desc more explicit
2017-01-10 10:47:29 +05:30
Waldir Pimenta
e6b9f81cd6
fix --contains example
2017-01-10 10:47:29 +05:30
Waldir Pimenta
e509233933
git-tag: add --contains example
2017-01-10 10:47:29 +05:30
Spark
6860a404d9
git-worktree.md: add page ( #1232 )
2017-01-09 16:32:05 +00:00
Waldir Pimenta
957f0211f3
supervisord: shorten main desc
2017-01-07 13:40:36 +05:30
Waldir Pimenta
57c294081e
git-bisect: add page ( #1227 )
2017-01-07 01:43:53 +00:00
MarloweW
8ce649c7b9
supervisord & supervisorctl: add page ( #1226 )
2017-01-06 12:22:05 +05:30
alefir
bc79616bc8
rtv: add page ( #1233 )
2017-01-06 10:19:49 +05:30
Seth Woodworth
e04863b55d
Add git-checkout example for files across branches
2017-01-06 10:13:46 +05:30
Waldir Pimenta
8d3a48c689
shorten descs
2017-01-05 10:11:07 +05:30
Waldir Pimenta
6df5df53a4
mention that -s and -c can be combined
2017-01-05 10:11:07 +05:30
Waldir Pimenta
94f408fd48
gource: tweak command descriptions
2017-01-05 10:11:07 +05:30
Waldir Pimenta
07c2de5e58
alias: change main description; add view example ( #1224 )
2017-01-04 21:52:02 +00:00
Waldir Pimenta
ddf43daa4c
hub: adjust descriptions for additional clarity ( #1217 )
2017-01-02 18:36:06 +00:00
Waldir Pimenta
1617567b82
cppcheck: add page ( #1212 )
2016-12-28 15:26:07 +00:00
Waldir Pimenta
d668c9e788
gitsome: add page ( #1214 )
2016-12-28 15:19:53 +00:00
Fürbringer
44051b4c1e
gource: add page ( #1211 )
2016-12-28 01:18:24 +05:30
Eric Rösch
086eca1cc2
ffmpeg: also mention conversion of frames from GIF into numbered images and back ( #1210 )
2016-12-24 00:29:40 +00:00
maximpertsov
89c2015940
jq: add page ( #1092 )
2016-12-21 23:40:12 +00:00
Assem Attia
b88b9ba3c7
install: add page ( #1140 )
2016-12-21 23:37:17 +00:00
Waldir Pimenta
5552c19ff1
meshlabserver: add page ( #1035 )
...
* meshlabserver: create page
* fixup: typo in command name
* fixes per PR review
2016-12-22 00:19:53 +01:00
mashehu
a6983d4063
bedtools: add page ( #1169 )
2016-12-21 23:07:22 +00:00
Waldir Pimenta
9a0a0335d6
hub: overhaul the page for improved clarity ( #1202 )
...
- make main description and command descriptions more specific
- simplify the fork command description
- simplify the pull-request example (both the command and description) hopefully without sacrificing information
- replace the browse issues example (which opens a page in the web browser) with one create a github remote for the current repo
2016-12-21 23:01:21 +00:00
alefir
c81a256483
Change scp examples to match token syntax guidelines ( #1203 )
2016-12-19 12:22:07 +05:30
Waldir Pimenta
71a329d775
git-cherry-pick: add examples to pick more commits ( #1198 )
2016-12-15 15:25:23 +00:00
alefir
34c8b016ad
git-cherry-pick: add page ( #1196 )
2016-12-15 09:59:11 +00:00
Phil Ewels
660b0fe51b
ftp: add page ( #1173 )
2016-12-13 16:35:47 +00:00
Martin Pool
fe37d4fb83
sudo: use `shutdown -h` to halt rather than reboot ( #1191 )
...
Makes the example consistent with its description
2016-12-06 13:39:45 +00:00
Waldir Pimenta
d71904864d
git-fetch: add --prune and bare example ( #1189 )
2016-12-02 13:19:05 +00:00
Phil Ewels
fffe42cf5d
conda: add page ( #1158 )
2016-11-29 14:44:38 +05:30
Waldir Pimenta
21e92ecc78
git-svn: add example for making a shallow clone ( #1136 )
2016-11-28 06:28:49 +00:00
Eric Rösch
1928329a65
adb: add push, pull and devices commands ( #1166 )
2016-11-26 16:03:36 +00:00
Waldir Pimenta
b9fded2e16
blender: add page ( #1131 )
...
Mostly based on https://www.blender.org/manual/advanced/command_line/arguments.html
with some additional help from http://blender.stackexchange.com/questions/3061/setting-render-options-from-the-command-line
2016-11-26 15:55:38 +00:00
Waldir Pimenta
63659bed37
find: quotes outside tokens; generic extension ( #1160 )
...
The generic extension is to conform to our contribution guidelines:
https://github.com/tldr-pages/tldr/blob/master/CONTRIBUTING.md#token-syntax
2016-11-26 15:51:12 +00:00
Phil Ewels
951f690e1d
samtools: add page ( #1159 )
2016-11-26 13:17:48 +05:30
Assem Attia
3051976952
unar: add page ( #1141 )
2016-11-26 10:44:25 +05:30
Darius Karel
57d6e2e91e
ansible: add page ( #1153 )
2016-11-23 11:29:38 +00:00
Frank
8a23482bb6
git stash: add clear ( #1149 )
2016-11-19 17:43:18 +00:00
Waldir Pimenta
cb277137b6
uname: split page to provide contextually-relevant info in the main desc. ( #1156 )
2016-11-19 17:41:17 +00:00
Daniel Choudhury
911521fc45
Made requested changes, remove bucket to bucket sync example
2016-11-19 22:42:14 +05:30
Daniel Choudhury
b6002b0606
Adding aws s3 cheatsheet
2016-11-19 22:42:14 +05:30
fuerbringer
aa6cb04e10
Changed batch mode description.
2016-11-13 19:29:25 +05:30
fuerbringer
4f0a7b9a48
Changed file path tokens and batch mode description.
2016-11-13 19:29:25 +05:30
fuerbringer
fc981c2116
htpasswd: add page
2016-11-13 19:29:25 +05:30
Waldir Pimenta
85395120d6
pandoc: update for v1.18
...
piping --help to the head command, as mentioned in #1072 ,
isn't necessary anymore (in fact, doing that doesn't work at all now)
See https://github.com/jgm/pandoc/commit/273d90b
2016-11-09 13:00:29 +00:00
Waldir Pimenta
ca490f9fc9
pandoc: improve desc, add 2 examples ( #1072 )
...
The list of supported formats needs to be done this way until https://github.com/jgm/pandoc/issues/2685 is resolved.
Also expand the --to option, to avoid ambiguity (per PR review)
2016-11-09 11:24:52 +00:00
Assem Attia
3d0644b2f6
fuck: add page ( #1139 )
2016-11-06 18:43:46 +05:30
Assem Attia
2940e07f92
move screenfetch.md to pages/common ( #1147 )
2016-11-06 11:54:21 +00:00
Waldir Pimenta
1524aa95da
perl: various minor tweaks
...
- use generic names in the descriptions, since they can be directly matched to the corresponding tokens
- move the -e example to appear right before the -M -e example
- make description of -M -e example more explicit (to match the plain -e example)
2016-11-05 19:17:40 +00:00
Assem Attia
b9bb46e6de
perl: add page ( #1142 )
2016-11-05 19:14:19 +00:00
Waldir Pimenta
39f27492c7
php: tweak some descriptions
2016-11-05 18:59:21 +00:00
Waldir Pimenta
11f2cb2037
php: remove redundant "CLI" from main description
2016-11-05 18:55:29 +00:00
Dan Kim
c32263f9dc
q: add page ( #1143 )
2016-11-05 18:39:47 +00:00
kalebo
6d109e5a66
rg: add page ( #1146 )
2016-11-03 09:12:23 +05:30
Waldir Pimenta
dc085927c6
assimp: add page ( #1028 )
2016-10-31 07:51:40 +00:00
Galdin Raphael
e8f92f81d9
vue: add page ( #1134 )
2016-10-29 23:34:42 +01:00
Waldir Pimenta
b5f522803a
alias: various tweaks ( #1135 )
...
- add a caveat to the main description about an aliases not being permanently saved
- tweak the descriptions of some examples
2016-10-29 16:03:11 +01:00
Waldir Pimenta
05c63936ce
git-reset: expand page ( #1127 )
...
As mentioned in https://github.com/tldr-pages/tldr/pull/1088#issuecomment-249368792
2016-10-27 18:27:41 +01:00
Waldir Pimenta
b2401cf0be
git-diff: rework a bit for clarity ( #1129 )
...
- use {{commit}} instead of {{PATHSPEC}}
- start with the simplest invocation, git diff
- move command to show staged changes next to the first two, which it is related to
- clarify description of --summary example
- move the .patch extension out of the token
2016-10-27 17:15:29 +01:00
Waldir Pimenta
173d353375
git-tag, git-fetch: add example for fetching tags ( #1128 )
2016-10-27 10:25:22 +05:30
Waldir Pimenta
669e845d3f
git-log.md: improve descriptions, add --grep ( #1012 )
2016-10-25 18:22:47 +01:00
frinkelpi
0f8f19cfc6
pdftk: add page ( #1126 )
2016-10-24 17:16:49 +01:00
Eric Nielsen
2f5af7f829
http: Variable supplied parameters between {{}} ( #1125 )
...
Missing in the last example.
2016-10-21 16:56:02 +01:00
Agniva De Sarker
f862a8aec2
ssh: shorten last description
2016-10-18 13:01:23 +05:30
Agniva De Sarker
452ba5f903
Fix linting error
2016-10-18 10:34:51 +05:30
Agniva De Sarker
19156aa83d
ssh: simplify page
...
- Combined the last 2 commands into a single format that can be expanded upon
by showing the -o option, since both can be passed as options.
- This also does not increase the no. of examples.
- Corrected a minor typo in path.
2016-10-18 10:27:47 +05:30
Pu Du
a9dc22e4dc
ssh: add x11 forwarding
2016-10-18 10:07:00 +05:30
Waldir Pimenta
262b77aaea
xargs: rework page to make it more beginner-friendly ( #1039 )
...
* xargs: update as agreed on code review.
2016-10-17 23:02:05 +01:00
vkolmakov
7b3cf933c0
Rephrase why command description and minor fixes
2016-10-16 22:10:01 -05:00
vkolmakov
165e1ded0b
Merge add and add-dev and remove ls
2016-10-16 18:46:48 -05:00
vkolmakov
81a9c4fedd
yarn: add page
2016-10-16 17:24:40 -05:00
Waldir Pimenta
d049860773
heroku: capitalize "Heroku" in descriptions
2016-10-16 11:56:22 +01:00
Yash Sharma
c09702e564
heroku: add page ( #1112 )
2016-10-16 11:55:03 +01:00
Waldir Pimenta
316d36256e
julia: add page ( #1089 )
...
Based on the [man page](https://github.com/JuliaLang/julia/blob/master/doc/man/julia.1 ), and on the
[Getting started](https://github.com/JuliaLang/julia/blob/master/doc/manual/getting-started.rst ) manual page.
2016-10-13 16:50:43 +01:00
Eric Nielsen
b6b26e345d
less, more: Don't use ...then... in examples
...
Instead, explain additional keystrokes in the example title. See
ee1472e76f (r82836295)
Also, change order of examples to down/up, end/start and next/previous
to keep consistency.
2016-10-13 12:30:52 +05:30
Waldir Pimenta
c15d705d40
fix descriptions split by mistake in #633 ( #1098 )
2016-10-12 16:58:04 +01:00
Eric Nielsen
8d93237d63
vim: Normal mode is the normal mode ( #1106 )
...
* vim: Improvements we can can agree on
Remove spaces between keypresses (as it could lead users to think they
should type a space there).
Simplify regexp substitution example.
Add ...then... to search example.
Add quit without saving example.
* vim: Improvements we can can agree on
Move search keystrokes to the example title.
Keep original regexp substitution example. See conversation starting at
ee1472e76f (r82820204)
2016-10-12 05:28:21 +02:00
Waldir Pimenta
856ffcf5fc
Merge pull request #1043 from danielcompton/patch-1
...
date: add unix epoch timestamp
2016-10-06 23:26:51 +01:00
Waldir Pimenta
4b7ef4a18d
vim: improve examples ( #1105 )
...
I tried to condense the most useful basic commands into this page without surpassing our length limit.
I also expanded the main description -- I wonder if there's a way to phrase it which could allow us to get rid of all the <Esc>s...
I combined copy/cut/paste into a single command, since it was important to allow space for a slightly more advanced command, (the find/replace example), which introduces some important vim concepts, such as command application ranges.
2016-10-06 11:19:06 +01:00
Waldir Pimenta
76f211601e
ar: add commas to list
2016-09-29 13:31:04 +01:00
Waldir Pimenta
c2fa9d2602
mtr: expand title's acronym in the main desc
2016-09-29 12:30:52 +01:00
kalebo
8dd53d6484
git-stash: add -p option ( #1094 )
2016-09-28 13:16:15 +05:30
Waldir Pimenta
67840a5c3f
shopt: add page ( #1033 )
2016-09-28 08:29:44 +01:00
Eliot Sykes
26700bf198
git-reset: add page ( #1088 )
2016-09-26 23:19:39 +05:30
Agniva De Sarker
b0cc68425b
go: add page ( #1085 )
2016-09-24 21:33:48 +05:30
Sailesh Choyal
6848f6db44
fold: add page ( #1087 )
2016-09-24 17:27:28 +05:30
David Pavlík
c49289b4a7
ping: add -a example ( #1027 )
2016-09-23 15:47:43 +01:00
Agniva De Sarker
d1e3c7b43e
Merge pull request #1046 from ericbn/hub
...
hub: Add fork and pull-request examples
2016-09-23 09:50:22 +05:30
Eric Nielsen
672addab21
hub: Further improve examples verbosity
2016-09-22 16:33:58 -05:00
Waldir Pimenta
d7041ec1d3
tar: reword the second sentence of the main desc. ( #1058 )
2016-09-22 20:09:54 +01:00
kidpixo
386a66cc9d
column: add page ( #1053 )
2016-09-22 15:20:03 +01:00
Waldir Pimenta
1072483744
page format: lowercase command names consistently ( #1083 )
2016-09-22 08:03:38 +01:00
Te-Chi Liu
5a54763c72
fixup: token string style ( #1081 )
...
- use underscore rather than minus
- use lower case rather than uppder case
2016-09-21 21:05:46 +05:30
Te-Chi Liu
a6efcb6ba8
git-rebase: add --onto option ( #1080 )
2016-09-21 12:28:28 +05:30
Agniva De Sarker
c73c797594
Merge pull request #1079 from tldr-pages/svn
...
git-svn: add fetch subcommand
2016-09-21 09:47:34 +05:30
Agniva De Sarker
fbac2453be
Merge pull request #1075 from alx741/stlink
...
Stlink: add pages
2016-09-21 09:45:55 +05:30
Daniel Campoverde [alx741]
bcaef1f8ab
stlink: wrap port number in {{}}
2016-09-20 13:27:56 -05:00
Agniva De Sarker
1e9232a77d
git-svn: fix page comments
2016-09-20 08:27:09 +01:00
Ricardo Corrie
aaa8b61bd6
Revision based on PR feedback
2016-09-20 08:27:09 +01:00
Ricardo Corrie
3701b6973f
git-svn: add `fetch` subcommand
2016-09-20 08:27:09 +01:00
Agniva De Sarker
0012e4ac2d
qemu-img: add page ( #1074 )
2016-09-19 21:16:17 +05:30
Daniel Campoverde [alx741]
29d7166a4d
stlink: use {{localhost}}
2016-09-18 17:36:50 -05:00
Daniel Campoverde [alx741]
f07e797642
stlink: expand GDB name
2016-09-18 13:25:47 -05:00
Daniel Campoverde [alx741]
a6d469a036
stlink: fix typo
2016-09-18 13:25:24 -05:00
Daniel Campoverde [alx741]
5c9c8b4023
stlink: add extra clarification on descriptions
2016-09-18 09:22:00 -05:00
Daniel Campoverde [alx741]
40a785d199
stflash: use spelled out options
2016-09-18 09:19:53 -05:00
Daniel Campoverde [alx741]
57e32a7e52
stlink: add st-info page
2016-09-17 23:13:42 -05:00
Daniel Campoverde [alx741]
bee393809e
stlink: add st-util page
2016-09-17 23:09:04 -05:00
Daniel Campoverde [alx741]
e7ba9d8ba8
stlink: add st-flash page
2016-09-17 23:04:12 -05:00
Agniva De Sarker
b18c728ace
make: Improve page
...
- Fix syntax error
- Expand flags
- Change "rule" to "target" as its a better terminology for make
2016-09-15 20:13:05 +05:30
Gregor Aisch
b256d9e49e
added make -B
2016-09-15 19:53:54 +05:30
Waldir Pimenta
df7fd7a1f1
cpio: qualify "(custom) binary format"
2016-09-14 23:30:06 +01:00
Waldir Pimenta
4525b11fcf
Merge pull request #1052 from tldr-pages/cpio
...
cpio: update descriptions
2016-09-14 23:26:57 +01:00
Agniva De Sarker
143394bda4
cpio: Re-modify descriptions to match flags
...
- Also fixed a minor grammar error
2016-09-14 22:18:01 +05:30
Agniva De Sarker
1ecdf19238
cpio: add detailed description about archive format
2016-09-13 12:05:19 +05:30
Parth Mehrotra
4bfdfacfa7
git-add: update to -A option ( #1051 )
...
See: (`git add -A` vs `git add .`)[http://stackoverflow.com/questions/26042390/git-add-asterisk-vs-git-add-period ]
2016-09-12 09:53:57 +05:30
Eric Nielsen
41c8c1a197
more: Remove redundant `(next)` for Page down ( #1044 )
...
This makes sense in the less page,
where there are examples for both Page down and up,
but not here.
2016-09-10 23:01:51 +05:30
Eric Nielsen
6b3bfccdce
hub: Improve examples verbosity
2016-09-10 12:29:39 -05:00
Agniva De Sarker
1a8f54c375
cpio: Update description to match flags
2016-09-10 22:02:57 +05:30
Eric Nielsen
5e56f2a886
hub: Add fork and pull-request examples
...
- Examples follow clone examples as a logical sequence
- Pull-request example stresses that one must first push to own fork
2016-09-09 11:18:38 -05:00
Waldir Pimenta
ed012db814
Merge pull request #1041 from tldr-pages/cron
...
cron: Add job definition example (addresses #822 )
2016-09-09 09:02:48 +01:00
Agniva De Sarker
835c4a3e49
cron: Use day/month names instead of nos.
2016-09-09 13:22:41 +05:30
Waldir Pimenta
5b9958d77a
inkscape: use FileQuit instead of FileClose
...
probably more useful in the general case
2016-09-09 04:02:40 +01:00
Daniel Compton
8136ac1930
Add unix epoch commands
...
These differ between Linux and OS X so the pages needed to be split.
2016-09-08 23:00:50 +12:00
Agniva De Sarker
3c00a0d180
cron: Add job definition example
2016-09-08 15:09:19 +05:30
Kostyantyn Moroz
ace09a9c9b
Added format of crontab file
2016-09-08 15:09:19 +05:30
Agniva De Sarker
efaa91cb48
Merge pull request #1042 from tldr-pages/sass
...
sass: various tweaks
2016-09-08 11:23:02 +05:30
Waldir Pimenta
ff14ef08b6
dokku: lowercase heading, per project guidelines
2016-09-08 04:33:35 +01:00
Waldir Pimenta
80de84361b
sass: various tweaks
...
lowercase heading, and reword some descriptions for clarity and consistency
2016-09-08 01:44:28 +01:00
Waldir Pimenta
64a30e82ca
use command name as main header, per guidelines
2016-09-07 20:30:46 +01:00
FlyingJester
a53fb05c95
cpio: add page
2016-09-07 23:17:08 +05:30
Waldir Pimenta
87faf0ee10
license: clarify descriptions ( #1036 )
...
Following discussion in #711
2016-09-06 08:37:04 +01:00
pdey
01759dcb9e
mongorestore: add page ( #1037 )
2016-09-05 21:52:20 +01:00
Eric Nielsen
13fea84d7e
less, more: Update page up/down shortcut ( #1038 )
...
- Previous shortcut (`D`/`d`) refers to scrolling half of a page, not a full page
2016-09-05 18:27:12 +01:00
Waldir Pimenta
d4cbe1ab9c
Merge pull request #1031 from tldr-pages/bash-version
...
bash: add --version
bash: quote command passed with -c
2016-09-04 21:21:00 +01:00
Waldir Pimenta
0f16059d3a
bash: quote command passed with -c
2016-09-04 20:59:10 +01:00
Agniva De Sarker
cebed99cb1
Merge pull request #1029 from ericbn/git-stash
...
git-stash: Make examples clearer
2016-09-03 12:33:11 +05:30
Eric Nielsen
2aca1c08b8
git-stash: Further improve verbosity of examples
2016-09-02 07:33:17 -05:00
Waldir Pimenta
76783fdc72
zip: minor change to fix build
...
See #1018 and https://github.com/tldr-pages/tldr-lint/pull/6
2016-09-01 21:39:16 +01:00
Eric Nielsen
480255d595
git-stash: Improved examples verbosity
2016-09-01 13:01:07 -05:00
Waldir Pimenta
be0fbaec97
zip: improve page ( #1030 )
...
- reorganize examples for a more logical progression
- make descriptions clearer and more in line with the option names they describe (c.f. #782 and #1018 )
2016-09-01 16:41:00 +01:00
zhangda7
34aec29c08
ngrep: add page ( #930 )
...
* ngrep: add page
* ngrep: update command
* ngrep: update syntax
2016-09-01 20:50:09 +05:30
Waldir Pimenta
9ecfc2bd9d
bash: add --version
2016-09-01 14:31:38 +01:00
Eric Nielsen
e0d884efeb
curl: Add more download and rewrite data examples ( #1023 )
...
- Download: first example introduces `-o`, second one introduces `-O`,
third example introduces `-L` and `-C` using brackets as per #1018
- Data: first example introduces `-d` (default method is POST and
default Content-Type is application/x-www-form-urlencoded), second
example introduces `-X` and `-H`
- Remove "Head request"
- Expand description of "Send form-encoded data" example
2016-08-31 19:33:33 +01:00
Eric Nielsen
1c0471fc23
wget: Use same example description as for curl ( #1026 )
...
- Use same description for the "Download a URL to a file" example as for curl (see #1019 and #1023 )
- Also fix example formatting
* wget: Use "contents" instead of "output" of an URL
2016-08-31 00:27:02 +01:00
Eric Nielsen
57fd36ec38
git-stash: Make examples clearer
...
- Difference between a stash name and a stash message was not clear. For
example, you cannot do:
$ git stash save foo
$ git stash apply foo
fatal: ambiguous argument 'foo': unknown revision or path not in
the working tree.
- Difference between stash `apply` and `pop` was not clear
- Make it clearer that all `apply`, `pop` and `drop` can take an
optional stash name, and that the default name is `stash@{0}`
2016-08-30 17:57:40 -05:00
Eric Nielsen
c8e3e44905
chmod: Use brackets instead of parenthesis ( #1024 )
...
To specify with single-letter parameter is being referenced (as per #1018 )
2016-08-30 17:47:11 +01:00
Waldir Pimenta
95d348665b
inkscape: slight improvement to last example desc
2016-08-29 17:25:40 +01:00
Waldir Pimenta
1fd16aa105
inkscape: fix typo (double equal signs)
2016-08-29 17:24:11 +01:00
Rahul Kavale
bf955d43e6
grep: add flags for lines before and after the match ( #1020 )
2016-08-29 00:43:14 +01:00
Waldir Pimenta
71ee99ef6f
Merge pull request #990 from tldr-pages/expand-tree.md
...
tree.md: add more useful examples
2016-08-27 09:48:49 +01:00
michaelAndersonCampingWorld
35635d7afb
apg: add page ( #1013 )
...
* add page with examples for apg (advanced password generator)
* edits per code review
* spread the examples across more options than just -m and -M
* expand abbreviations and add double curly brackets
2016-08-26 12:07:09 +01:00
Agniva De Sarker
4d19e2f249
mongodump: add page ( #1017 )
2016-08-26 12:01:49 +01:00
Agniva De Sarker
996dd4074f
cd: Removing leading slash according to convention
2016-08-25 22:56:19 +05:30
Waldir Pimenta
31a07858ca
split tree.md into linux and osx versions, to cater to the different sets of available options
2016-08-24 18:43:14 +01:00
Waldir Pimenta
268af0f8a9
tree: use "levels" in the -L example description
...
for improved mnemonics :)
2016-08-24 17:00:32 +01:00
Waldir Pimenta
85dcf3eef6
tree.md: add more useful examples
...
and reorder entries by increasing complexity
2016-08-24 17:00:31 +01:00
Waldir Pimenta
96289e570d
git-branch.md: various fixes (no content change)
...
- changed token syntax to match project guidelines
- added tokens to the rename example
- moved rename example to before the delete example
- reword some descriptions for clarity
- include "git" in the command description
2016-08-24 16:58:53 +01:00
Waldir Pimenta
a07b6f9e1e
scrapy.md: lowercase "framework"
2016-08-23 13:17:29 +01:00
Bernardas Ališauskas
9f5d5b571f
add page for scrapy from scrapy.org ( #939 )
2016-08-23 13:15:37 +01:00
Zachariah Kendall
6e25c3cfb9
traceroute: Add example of specifying datagram size ( #999 )
2016-08-21 20:07:22 +01:00
Leandro Ostera
2ba4397edc
Updates vim and vimtutor pages ( #926 )
...
* Updates vim and vimtutor pages
* Easy peasy.
* Use <Enter> instead of <Cr>
* Show help command.
We might not be able to help you move around
but the interactive help provided by vim is
pretty good, so helping people find it might
be a good idea.
* Reorder commands and lowercase help
2016-08-21 16:00:09 +02:00
Waldir Pimenta
e3553ac6f8
kill.md: change signal explanation ( closes #616 ) ( #998 )
...
* add kill signal
* 修改kill相关信号的注释
* kill.md: improve descriptions and formatting
* kill.md: move dashes to outside the tokens
2016-08-21 15:36:24 +02:00
Pelle Jacobs
3babe7cebc
Create fswatch.md ( #1005 )
...
* Create fswatch.md
* Update fswatch.md
* Update fswatch.md
* Update fswatch.md
* Update fswatch.md
* Update fswatch.md
* Update fswatch.md
* Update fswatch.md
* Update fswatch.md
2016-08-21 13:03:49 +02:00
Agniva De Sarker
e42a45fba9
7z*.md: Modify tokens ( #1009 )
2016-08-18 10:50:36 +01:00
Waldir Pimenta
6abfb1f252
Merge pull request #788 from oxguy3/patch-1
...
Added missing p7zip tools (7z and 7zr)
2016-08-18 10:36:16 +01:00
George D. Plymale II
dff8f92cf0
dig.md: add reverse DNS lookup example ( #1003 )
...
Doing a reverse DNS lookup by typing out the IP address in reverse, plus adding .in-addr.arpa to the end is tedious, but fortunately dig has the -x option which makes that process much simpler as one can just feed it a normal IP address.
2016-08-13 05:01:26 +01:00
Waldir Pimenta
3061f6ca65
wait.md: rephrase for clarity
2016-08-09 10:58:49 +01:00
周丰
7da70b4f31
pyenv: add page ( #995 )
2016-08-09 08:38:21 +01:00
Waldir Pimenta
4a3cb444e4
psql.md: minor rephrasing
2016-08-08 08:48:21 +01:00
Agniva De Sarker
5f43335dc6
psql: Improve page ( #982 )
...
* psql: Improve page
- Removed * , this was causing problems with rendering. The node client was
gobbling up the entire word !
- Changed 'query' to 'command' as it can be a postgres db command too.
- Used the -f flag for running multiple commands as its a better and scalable
option.
* Addressing comments
* Replacing against with on
- Mentioning the default user
2016-08-08 10:11:27 +03:00
Daniel Campoverde
f6a41ecee9
avrdude: add page ( #989 )
2016-08-08 10:10:06 +03:00
Waldir Pimenta
a1ceb9d1b6
sed.md: add input to the only example missing it ( #992 )
...
* sed.md: add input to the only example missing it
* osx/sed.md: add input to the example missing it
2016-08-08 10:09:34 +03:00
Waldir Pimenta
c424e4969b
rm: various tweaks for clarity; add -v ( #988 )
...
* rm: various tweaks for clarity; add -v
changed some descriptions and tokens to make the meaning of each command clearer, and facilitate memorization of the flags
added the -v (verbose) option
* use a more intuitive pattern for the -i option
2016-08-08 10:08:40 +03:00
Agniva De Sarker
0d2e70625e
mongo: Add page ( #994 )
...
* mongo: Add page
* Addressing comments
2016-08-08 10:04:25 +03:00
Waldir Pimenta
4732cbbc93
vim.md: apply fix per code review comments
2016-08-06 14:34:25 +01:00
Waldir Pimenta
1f0970401f
vim.md: apply formatting conventions
2016-08-06 14:29:34 +01:00
shoeletz
abcdb8dee2
reduced repetetiveness of descriptions
2016-08-06 14:28:12 +01:00
shoeletz
5adbb1fa34
Update vim.md
2016-08-06 14:25:00 +01:00
shoeletz
314a240945
vim: add :w, :wq, i
2016-08-06 14:24:14 +01:00
Alex Plescan
9ae27f3ea2
vim: fix typo
2016-08-02 10:56:07 +10:00
Agniva De Sarker
aab738a152
meteor: add page ( #971 )
...
* meteor: add page
* Addressing comments
- Replacing 'your' with 'the'
2016-07-27 22:11:46 +02:00
Rob Young
44527a82a8
Adds command to show SSH key fingerprint ( #935 )
...
Adds an ssh-keygen command to show the fingerprint of an SSH key in the
same format that is used by Github to list SSH keys that it knows about.
2016-07-26 16:16:42 +02:00
Gustavo Moraes
1e960c2003
Improvement in "Git" page (command description) ( #973 )
2016-07-24 14:15:31 +02:00
Agniva De Sarker
3da76e4150
Applying the snake_case convention throughout the repo ( #967 )
...
* Applying the snake_case convention throughout the repo
- Also removing the file extension where not needed
- Adding {{ }} on a few old pages
* Addressing concerns
- Added {{ }} where they were missed out
- Removed spaces inside {{ }}
- Reverting "file" to "filename" to make it clearer
* Fixing the comments on nc page
2016-07-22 22:24:06 +02:00
Felix Yan
1a40b65b77
Merge pull request #966 from AgamAgarwal/useless-cat
...
Removed useless use of cat
2016-07-22 04:44:49 -05:00
Agam Agarwal
3250be5beb
Removed useless use of cat
2016-07-22 11:21:32 +05:30
Agniva De Sarker
47dc50bd02
Applying the multiple file extension convention ( #965 )
...
- Xref- https://github.com/tldr-pages/tldr/issues/478
2016-07-21 23:46:44 +02:00
Agam Agarwal
87540fec49
echo: added -n, -e examples ( #963 )
2016-07-21 14:52:49 +01:00
Waldir Pimenta
54a666316e
rename.md: add -f flag ( #960 )
...
* rename.md: add note about -f flag
* rename.md: add -f example
2016-07-20 07:47:32 +02:00
Waldir Pimenta
5655f1c1f5
tree.md: add clarification to -L option ( #959 )
2016-07-19 13:39:18 +02:00
Waldir Pimenta
6a988e9325
awk: introduce $NF ( #956 )
...
Numbered field references have been used in the first two examples,
so it's quite reasonable to take the opportunity to introduce a new (and quite useful!) concept.
In addition, this commit makes a few tweaks to the example descriptions, to make them clearer.
2016-07-16 14:30:28 +02:00
Alfred Bez
8336898ea9
sort uniq first ( #954 )
...
'uniq' does not detect repeated lines unless they are adjacent, so we need to sort them
2016-07-15 13:18:37 +02:00
Ricardo Corrie
30c40feaa1
w3m: add page ( #949 )
2016-07-14 17:00:28 +01:00
Lampros Mountrakis
d8a221ef26
git-remote: use straight quotation marks instead of curly ones ( #951 )
...
this was the only command page that used non-ASCII characters
2016-07-14 08:18:38 +01:00
Agniva De Sarker
fa8b2d8f92
Apply the 'path/to/item' convention uniformly ( #947 )
2016-07-13 09:53:22 +01:00
Waldir Pimenta
fff4a4c95e
add ed.md ( #944 )
...
* add ed.md
inspired by this very nice introductory blog post:
https://sanctum.geek.nz/arabesque/actually-using-ed/
* ed.md: fix linting
2016-07-10 11:59:29 +02:00
Waldir Pimenta
fd5fb3562d
uniq: add sorting example ( #945 )
...
This involves another command, but it's such a natural extension of uniq's `-c` functionality that I feel it's warranted to show here.
We should probably add a sort to the -c example too, because uniq only deals with *sequential* line repetitions.
2016-07-10 11:26:13 +02:00
Agniva De Sarker
f080073fad
webpack: add page ( #940 )
2016-07-08 10:40:36 +01:00
thalesmello
0579b0993c
Fix extended regular expressions
...
By default, grep already uses regular expressions when searching.
The example `grep -e {{^regex$}} {{path/to/file}}` is the same as `grep {{^regex$}} {{path/to/file}}`.
However, because of the comment about extended regular expressions, I mistakenly assumed `-e` was the option to enable it.
I believe most people would refer to `tldr` in this use case looking for the `-E` extended regular expressions.
With this in mind, I believe that example would be better rephrased as this pull request makes it.
2016-07-04 17:40:04 -03:00
Waldir Pimenta
384557eb15
Create git-imerge.md ( #934 )
2016-06-28 11:57:32 +01:00
Waldir Pimenta
747259fd62
fix format
2016-06-25 09:44:23 +01:00
Waldir Pimenta
b38c300b91
fix format
2016-06-25 09:42:42 +01:00
Waldir Pimenta
49771b150e
add quota.md ( fixes #832 )
2016-06-25 01:17:37 +01:00
Waldir Pimenta
385a89558e
grep: simplify -l example to match the others
2016-06-24 10:39:17 +01:00
Waldir Pimenta
a2b596861d
grep.md: "something" → "search_string"; -r → -rI
2016-06-23 18:50:38 +01:00
Dylan Rees
d1b3b357e8
Create fsck.md ( #924 )
2016-06-23 18:41:44 +01:00
Ayakashi
777305c630
grep.md: add -l example ( #913 )
2016-06-21 08:11:27 +01:00
Waldir Pimenta
698eacdb44
minor tweaks to gunzip.md, for improved clarity ( #919 )
2016-06-21 08:09:40 +01:00
Waldir Pimenta
2e95ede479
screen.md: fix typo
2016-06-21 00:07:51 +01:00
Beshr Al Nahas
7870c6c4c7
screen: Start a new deamon and log the output ( #912 )
2016-06-21 00:06:49 +01:00
Te-Chi Liu
6dd36ada23
bg: add page ( #911 )
2016-06-21 00:05:30 +01:00
Agniva De Sarker
7f168f6144
gunzip: add page ( #909 )
2016-06-21 00:00:19 +01:00
Rob Young
b78dd40547
Add examples for exporting GPG keys ( #907 )
...
This chage adds examples for exporting public and private GPG keys.
This is particularly useful for backing up keys. In both cases they have
been output as ASCII armored text with the `--armor` flag to make the
output easier to work with.
2016-06-20 23:58:28 +01:00
Dylan Rees
40223d8eef
Create sendmail.md ( #906 )
2016-06-20 23:56:54 +01:00
Hugo
938286334c
Create subliminal.md ( #905 )
...
https://subliminal.readthedocs.io/en/latest/user/cli.html
2016-06-20 23:55:22 +01:00
Waldir Pimenta
a84285affc
Merge pull request #891 from tldr-pages/xargs
2016-06-20 23:44:58 +01:00
张峥
b4dea673c7
id: add page ( #847 )
2016-06-20 23:28:25 +01:00
Frank
6bdd183e86
git-diff: create a patch file
2016-06-17 13:08:01 +02:00
ayakashi
c64932099b
Update nc.md
2016-06-13 11:54:36 +08:00
Leandro Ostera
b1e11b2798
Merge pull request #900 from jcalebj/create_wait
...
wait: add page
2016-06-05 18:03:15 +02:00
Andreas Gerler
4d8497271f
ssh-keygen: change passphrase for ssh-key
...
- add info for changing password of an existing ssh-key
Signed-off-by: Andreas Gerler <baron@bundesbrandschatzamt.de>
2016-06-01 09:15:10 +00:00
jefferycjones
47f0f839b3
wait: add page
2016-05-23 15:46:41 -04:00
Leandro Ostera
169f5174eb
Merge pull request #897 from liuderchi/gcc
...
gcc: add -c option
2016-05-22 15:31:41 +02:00
Leandro Ostera
ee752c401e
Merge pull request #890 from onesuper/odps-auth
...
odps-auth: add desc role
2016-05-22 15:31:15 +02:00
liuderchi
fc32c063cf
gcc: add -c option
2016-05-21 22:55:03 +08:00
Walter O'Keefe
084986a76b
passwd: Fix typo ( #894 )
2016-05-18 09:32:06 +01:00
Daniel Senff
d2de67f45b
Update screen.md ( #862 )
...
session name is also the session id, so have the same wording
2016-05-17 10:56:39 +01:00
Felix Yan
23dec7ebd8
Merge pull request #889 from Larry850806/patch-1
...
Update wget.md
2016-05-17 03:28:59 -05:00
Larry850806
df82496c6c
Update wget.md
2016-05-17 13:28:13 +08:00
Waldir Pimenta
5667133d6a
xargs: move specific example, per discussion in #891
2016-05-16 13:47:00 +01:00
Cheng Yichao
e671e85cdc
odps-table: typo
2016-05-16 17:18:34 +08:00
程亦超(何兮)
b75e25a7fb
odps-auth: reorder commands
...
Change-Id: I58c9b5451853171cd5d084877576f606068d1984
2016-05-16 15:17:01 +08:00
Felix Yan
d306eeb2da
Merge pull request #886 from onesuper/odps-inst-tldr
...
odps-inst: add page
2016-05-16 01:59:03 -05:00
Waldir Pimenta
f26d5164ae
xargs: add example as discussed in #878
...
Also moved the concrete example to the end.
2016-05-16 07:51:34 +01:00
Andrei Cioara
eb1f864263
shortened xargs ( #878 )
...
rest_of_arguments was misleading
2016-05-16 07:47:07 +01:00
Larry850806
397e0587f3
Update wget.md
2016-05-16 09:54:31 +08:00
程亦超(何兮)
e9fe30d329
odps-auth: add desc role
...
Change-Id: I76664ed2070a2367071e25a1640dbf0055721ae6
2016-05-16 09:43:04 +08:00
Larry850806
73f945753d
Update wget.md
2016-05-15 21:52:14 +08:00
Larry850806
c170b92b33
Update wget.md
2016-05-15 21:49:44 +08:00
Waldir Pimenta
3d8326e4dd
odps-auth: phrase second example to match others
2016-05-15 11:45:33 +01:00
Felix Yan
4cfc265cbd
Merge pull request #883 from onesuper/odps-func-tldr
...
odps-func: add page
2016-05-15 05:13:42 -05:00
Felix Yan
039d257804
Merge pull request #884 from onesuper/odps-auth-tldr
...
Odps auth tldr
2016-05-15 05:11:52 -05:00
Felix Yan
5bb2719231
Merge pull request #885 from onesuper/odps-tunnel
...
Odps tunnel
2016-05-15 05:11:03 -05:00
程亦超(何兮)
ef5ad25e56
odps-inst: update
...
Change-Id: I854a7c53372731e048e119aef0466638ec2cf9d9
2016-05-15 16:53:16 +08:00
程亦超(何兮)
0184a14b99
odps-func: miss {{ }}
...
Change-Id: Ib9aee491350b060262a04c7e7a4ba869442c9bd4
2016-05-15 16:50:36 +08:00
程亦超(何兮)
443a206d19
odps-auth: {{object}} to {{object_type}}
...
Change-Id: Icbbd48ce29c3687cebae78dd1c965d85aae7aae1
2016-05-15 10:56:50 +08:00
程亦超(何兮)
3779e7d200
Revert "odps-func: simplify"
...
This reverts commit 2cb618cc6f
.
2016-05-14 11:23:06 +08:00
程亦超(何兮)
e3e486e080
odps-auth: update
...
Change-Id: Ibdf4b76b3c720610d1abf48dd29e173c02cd51f4
2016-05-14 11:20:48 +08:00
程亦超(何兮)
cc90103f8d
odps-inst: update
...
Change-Id: Id1b21ce652ed7410878e570ba51a9c9ec0607848
2016-05-14 11:11:18 +08:00
程亦超(何兮)
2c86fb2c8e
odps-tunnel: update
...
Change-Id: Id8f584afafc35874f2046f12d1c886bc77f5d105
2016-05-14 10:58:43 +08:00
Felix Yan
c18ade3f66
Merge pull request #881 from onesuper/odps-resource-tldr
...
odps-resource: add page
2016-05-13 05:40:51 -05:00
Felix Yan
797d5ebabb
Merge pull request #887 from onesuper/odps-fix
...
odps: miss =
2016-05-12 21:15:38 -05:00
Felix Yan
b32d8ed4a0
Merge pull request #880 from onesuper/odps-ddl
...
Odps ddl
2016-05-12 21:14:29 -05:00
程亦超(何兮)
2cb618cc6f
odps-func: simplify
...
Change-Id: If7053144daac40ee8eeb784b699a850cd0e6792d
2016-05-13 10:13:47 +08:00
程亦超(何兮)
9ca879d338
odps: miss =
...
Change-Id: Ia78ec31af468f233676011f14e684e62c0098dcf
2016-05-12 22:15:16 +08:00
程亦超(何兮)
ce67b801eb
odps-inst: add page
...
Change-Id: I477c1dabde9a2e517632b38de2e5e878a6fd835d
2016-05-12 22:10:00 +08:00
Igor Shubovych
c4d351e69b
Merge pull request #866 from livioso/patch-1
...
Add npm install --save-dev 🐖
2016-05-12 16:55:43 +03:00
程亦超(何兮)
8bfc4decba
odps-tunnel: add page
...
Change-Id: Ie91458c5e6302952ef1adc6779ee19a6b4ea3001
2016-05-12 21:46:45 +08:00
程亦超(何兮)
a1198f3713
odps-tunnel: add page
...
Change-Id: Ic97e03bafdc9761eb18f51f912e4e14da1163f9a
2016-05-12 21:43:06 +08:00
程亦超(何兮)
df47109481
odps-auth: typo
...
Change-Id: I2a8ea11be6267868c790eb6357c525c6b1d79715
2016-05-12 21:20:57 +08:00
程亦超(何兮)
18d901ba46
odps-auth: update
...
Change-Id: I7164568e8ee03ae503cf07cf6bbd5d370395e428
2016-05-12 21:19:55 +08:00
程亦超(何兮)
604f0eca65
odps-resource: update
...
Change-Id: I6f5f3b8a8d2689f7f9649ce7fd628b8c861cc5b0
2016-05-12 21:14:27 +08:00
程亦超(何兮)
5b48f34877
odps-func: update
...
Change-Id: I8cdcdea0bff719bfa37b747c5e020c7f20740dd3
2016-05-12 21:11:50 +08:00
程亦超(何兮)
995fa02631
odps-auth: shorthand
...
Change-Id: I3a0cd20a86c78b2a596e1c2175149ebe93f1d5e1
2016-05-12 21:08:15 +08:00
程亦超(何兮)
b67da53549
odps-auth: add page
...
Change-Id: Ic871dd39c9b866054fde3f7c083b145d4c7e9a72
2016-05-12 21:05:53 +08:00
程亦超(何兮)
dc961a6400
odps-table: rename ddl to table
...
Change-Id: I85f19f6fdb1df566a500a4353345b2e4b10b2f48
2016-05-12 20:35:27 +08:00
程亦超(何兮)
3d4bea19ce
odps-func: add page
...
Change-Id: Iffbbfff1252d40ef3671f9174a09e54fd1fa6de9
2016-05-12 20:29:45 +08:00
程亦超(何兮)
5ee4156fa7
odps-resource: typo
...
Change-Id: I5d83e4bc32612498188bae2b4504d5925ff0ea63
2016-05-12 20:10:28 +08:00
程亦超(何兮)
4f24a92912
odps-resource: update
...
Change-Id: I977753abf297066d3f3f5ef6277775c0114d8030
2016-05-12 20:05:36 +08:00
程亦超(何兮)
bbc52a9fc7
odps-ddl: typo
...
Change-Id: I5ec6a100ae27992deb571a56481f65a07b18c14e
2016-05-12 18:16:03 +08:00
Severen Redwood
f4e69318b7
less: Add example for enabling ANSI color output ( #849 )
2016-05-12 10:49:04 +01:00
程亦超(何兮)
d85b054fe5
odps-resource: add page
...
Change-Id: I69552328ad7dbfb8117146bd6cb1cff088f1c5a1
2016-05-12 14:18:25 +08:00
程亦超(何兮)
b0e464f98c
odps-ddl: rename file
...
Change-Id: I07dca5d9f840490130111da257c38b4d93f4da6d
2016-05-12 13:31:28 +08:00
程亦超(何兮)
bad358af7a
odps-ddl: add page
...
Change-Id: I75366bdb9f6c96136c4838c6961159418a77dae7
2016-05-12 13:28:55 +08:00
程亦超(何兮)
3132be399a
odps: delete one case and add one case
...
Change-Id: I3b6fb2d300a2d27e44110566654fed722fb92441
2016-05-12 00:17:52 +08:00
程亦超(何兮)
8cd264e4f2
odps: reduce num of showcases
...
Change-Id: I677a417cf14170ed9f33781d376e004a6c5ca133
2016-05-12 00:13:29 +08:00
程亦超(何兮)
4c21b73d81
odps: add page
...
Change-Id: If1efc9f677f3e480131a293f6c6bb43aaea40a6b
2016-05-11 20:39:56 +08:00
Waldir Pimenta
8eadb597a6
sort: swap examples to introduce options gradually
2016-05-10 14:12:37 +01:00
Waldir Pimenta
616f92d719
sort.md: improve example descriptions
2016-05-10 14:09:55 +01:00
Waldir Pimenta
d95b01fcd1
make the last examples more useful ( #858 )
...
Output to file and sort files.
2016-05-09 14:17:43 +01:00
Leandro Ostera
5cc6ae001d
Merge pull request #864 from tldr-pages/cut-diff-separators
...
cut: use different separator characters
2016-05-07 21:11:07 +02:00
Waldir Pimenta
2094ff365f
use the term "delimiter" for the -d option
2016-05-07 18:28:06 +01:00
Waldir Pimenta
fb43b993b1
mpc.md: tweak description of last example
2016-05-07 18:15:19 +01:00
Waldir Pimenta
2950f9b6b8
mdp.md: slight rewording
2016-05-07 18:11:30 +01:00
Leandro Ostera
89ad0da38f
Merge pull request #868 from alx741/ghc
...
ghc: add page
2016-05-07 12:48:57 +02:00
Leandro Ostera
567fc3c2e9
Merge pull request #871 from sbrl/cloc
...
Add cloc
2016-05-07 12:48:46 +02:00
Leandro Ostera
e9aebdd5a3
Merge pull request #872 from alx741/mpc
...
mpc: add page
2016-05-07 12:48:38 +02:00
Leandro Ostera
0ba139d930
Merge pull request #867 from alx741/cabal
...
cabal: add page
2016-05-07 12:48:27 +02:00
Leandro Ostera
1aa0d2e99f
Merge pull request #870 from alx741/rustc
...
rustc: add page
2016-05-07 12:48:18 +02:00
Leandro Ostera
06c9316a1e
Merge pull request #873 from alx741/mdp
...
mdp: add page
2016-05-07 12:47:37 +02:00
Daniel Campoverde [alx741]
2cb2770214
mdp: fix typo
2016-05-06 17:19:36 -05:00
Daniel Campoverde [alx741]
b5387ef527
rustc: remove test harness option
2016-05-06 11:59:33 -05:00
Daniel Campoverde [alx741]
21f3cecd77
mdp: clarify about font color `--invert`
2016-05-06 11:48:01 -05:00
Daniel Campoverde [alx741]
8121dda4a4
mpc: apply corrections and suggestions
2016-05-06 11:24:46 -05:00
Daniel Campoverde [alx741]
b8e7840054
mdp: specify ncurses in the description
2016-05-06 11:07:10 -05:00
Starbeamrainbowlabs
fb3cf26a7d
Make directory paths even more clearerererer
2016-05-06 10:41:00 +01:00
Starbeamrainbowlabs
154d0db2a3
Fixed directory tokens.
2016-05-06 10:12:39 +01:00
Starbeamrainbowlabs
28b087e980
Correct progress example.
2016-05-06 09:57:18 +01:00
Starbeamrainbowlabs
88efafaf97
SImplify directory tokens.
2016-05-06 06:44:10 +01:00
Daniel Campoverde [alx741]
fb11e1f09a
mdp: add page
2016-05-06 00:04:23 -05:00
Daniel Campoverde [alx741]
ff1a038cfb
mpc: add page
2016-05-05 22:33:53 -05:00
Starbeamrainbowlabs
80a67a17aa
Add cloc
...
Find out more about cloc here: https://github.com/AlDanial/cloc
2016-05-05 20:01:56 +01:00
Daniel Campoverde [alx741]
a923bc13e1
rustc: improve description
2016-05-05 12:01:04 -05:00
Daniel Campoverde [alx741]
fa2c2e295d
cabal: improve description
2016-05-05 11:44:25 -05:00
Daniel Campoverde [alx741]
164f1c9997
ghc: more explicit
2016-05-05 11:33:43 -05:00
Livio Bieri
9f182ee686
Update npm.md
2016-05-05 16:13:29 +02:00
Daniel Campoverde [alx741]
de5e247966
rustc: add page
2016-05-04 20:51:41 -05:00
Daniel Campoverde [alx741]
05d68a0056
cargo: add page
2016-05-04 20:39:32 -05:00
Daniel Campoverde [alx741]
8e84a68711
ghc: add page
2016-05-04 20:22:26 -05:00
Daniel Campoverde [alx741]
745392d8e0
cabal: add page
2016-05-04 20:05:16 -05:00
Felix Yan
b61acdf8a0
Merge pull request #865 from tldr-pages/ag-l-o
...
ag: add -l and -o options
2016-05-04 09:38:16 -05:00
Livio Bieri
9dc3893c59
Add npm install --save-dev 🐖
...
Am I the only one who always forgets if it's --saveDev or --save-dev? My suggestions add --save-dev too. 💩
2016-05-04 10:46:42 +02:00
Waldir Pimenta
ebeed606d9
iconv: more explicit example descriptions ( #863 )
2016-05-03 08:27:32 +01:00
Waldir Pimenta
4517f2e411
ag: add -l and -o options
2016-05-02 14:33:59 +01:00
Waldir Pimenta
d1f217b68f
cut: use a different separator characters
2016-05-02 13:02:22 +01:00
Max Beier
49c7b1b342
curl: hyphen instead of en dash ( #857 )
2016-04-26 18:28:44 +01:00
Waldir Pimenta
4fb0b58900
make extended regex character list more readable
2016-04-22 14:23:06 +01:00
Waldir Pimenta
7782d92820
various tweaks to grep
...
- use "case-insensitive" in the description of the -i option to make the initialism clear
- use path/to/file instead of file_path
- mention extended regex syntax and expand first occurrence to spell "regular expression"
- clarify wording of the -C example description
2016-04-22 12:24:24 +01:00
Waldir Pimenta
685b6ea8bd
sed: swap extended regex & line pattern examples
2016-04-21 19:13:01 +01:00
Waldir Pimenta
1c76b8ea7b
sed: reword last example and add it to the osx version too
2016-04-21 19:11:33 +01:00
Khaja Minhajuddin
4915aa3b8b
sed.md: use alternative separators ( #806 )
2016-04-10 20:18:24 +01:00
Jonathan Chen
2045afb9aa
Fix spelling error ( #846 )
2016-04-10 20:06:07 +01:00
Waldir Pimenta
87a46c30e7
Merge pull request #838 from emileber/bower-page
...
added bower to common pages
2016-04-04 09:54:40 +01:00
Igor Shubovych
4e16eb267d
Merge pull request #735 from imjacobclark/patch-1
...
Client certificate in cURL example
2016-04-04 11:16:07 +03:00
ebergeron
102286e926
added bower to common pages
2016-04-03 20:09:54 -04:00
Igor Shubovych
c5fb9a6ed5
Merge pull request #840 from Cvetomird91/qemu
2016-04-03 23:01:11 +03:00
Shivam Mevawala
6d98095dc1
sftp: added -R example
2016-04-01 10:47:57 -04:00
Shivam Mevawala
0652094736
sftp: added -R example
2016-04-01 10:46:33 -04:00
Larry850806
e608317d3c
Update sort.md
2016-03-30 23:13:36 +08:00
Cvetomir Denchev
5896ead73d
qemu.md
2016-03-30 13:33:58 +03:00
Zak Remer
b184ceca66
git-submodule: Add tldr page for the git-submodule command.
...
Update git-submodule to pass linter requirements.
2016-03-29 14:06:55 -07:00
ebergeron
88f5d65eb5
Added gulp to common pages.
2016-03-27 15:59:24 -04:00
Ian MacIntosh
5d2160f654
rm: fix typo ("it's" should be "its")
2016-03-25 14:17:25 -04:00
Waldir Pimenta
d6bd08e69e
Create inkscape.md
...
Most of this is based on the excellent "examples" section of Inkscape's man page:
https://inkscape.org/en/doc/inkscape-man.html#examples
2016-03-22 21:33:52 +00:00
Mateusz Konieczny
aab6d79c96
shorten history -c explanation using suggestion by @waldyrious
2016-03-19 21:09:30 +01:00
Igor Shubovych
c79571b553
Merge pull request #825 from matkoniecz/history
...
add explanation how to fully erase bash shell history
2016-03-19 19:43:01 +02:00
Miguel Amigot
085b18642f
Wrong order of arguments in command
2016-03-19 02:01:04 -04:00
Mateusz Konieczny
9cc107138d
add explanation how to fully erase bash shell history
...
based on http://unix.stackexchange.com/questions/203290/how-do-i-clear-the-terminal-history/203295#203295
2016-03-15 19:12:27 +01:00
Leandro Ostera
42551edc3f
Merge pull request #812 from jedahan/ssh-keygen-filepath
...
Ssh keygen filepath
2016-03-10 00:03:10 +01:00
Jonathan Dahan
3902255b9d
ssh-keygen: add output file path option
2016-03-09 17:10:49 -05:00
Igor Shubovych
5d5dea076a
Merge pull request #817 from kkk777kkk/patch-1
...
Added backward search example for less command
2016-03-04 23:01:22 +02:00
Leandro Ostera
b7407e2e08
Merge pull request #815 from Cvetomird91/readlink
...
added readlink
2016-03-04 14:30:07 +01:00
Cvetomir Denchev
ed4a8ef02f
added readlink
2016-03-04 13:35:00 +02:00
Kostyantyn Moroz
dc9773114c
Added backward search example for less command
2016-03-04 10:33:57 +00:00
Cvetomir Denchev
f667f90bec
added gcc option
2016-03-02 15:57:42 +02:00
Igor Shubovych
6e94611f88
Merge pull request #793 from oxguy3/patch-7
...
tput: add page
2016-03-01 21:59:54 +02:00
Waldir Pimenta
4e4d430223
Merge pull request #807 from tldr-pages/replace-on-matched-line
...
Sed: adds replace before matching sample
2016-03-01 13:39:03 +00:00
Leandro Ostera
e22f8087e1
Updates description
2016-03-01 12:54:15 +01:00
Igor Shubovych
30433c622b
http: add the missing example to HTTPie (see discussion in #808 )
2016-02-29 11:47:42 +02:00
Igor Shubovych
e60647db93
Merge branch 'http' of git://github.com/jkbrzt/tldr into jkbrzt-http
2016-02-29 11:41:07 +02:00
Jakub Roztočil
9179bb7131
Commands--
2016-02-29 14:26:07 +08:00
Gilles Castel
bee820c22d
node: fix typo
2016-02-28 21:09:02 +01:00
Jakub Roztočil
927e44ca26
Reduced the number of examples
2016-02-29 01:22:04 +08:00
Jakub Roztocil
1d062a94f0
http: add
2016-02-28 18:17:45 +08:00
Leandro Ostera
7328774d81
Sed: adds replace before matching sample
...
Something I find myself doing more and more is to match on a line instead of trying to match all I want with `{{find}}`.
So in a file like:
```erl
{ riak_core, [ {
{riak_ip, "127.0.0.1"},
%% ...
},
%% ...
]
```
Instead of replacing that ip by doing `sed 's/riak_ip,"127\.0\.0\.1/riak_ip,"$NEW_IP/'`, I do `sed '/riak_ip/s/127\.0\.0\.1/$NEW_IP'`.
2016-02-27 14:23:24 +01:00
Igor Shubovych
3fed396b5c
apm: create page, atom: decouple
2016-02-25 22:11:24 +02:00
Igor Shubovych
185ac24bbd
Merge branch 'patch-2' of git://github.com/bharadwaj-raju/tldr into bharadwaj-raju-patch-2
2016-02-25 22:05:07 +02:00
Igor Shubovych
843ca49ad3
Merge pull request #802 from oxguy3/slackcat
...
slackcat: add page
2016-02-25 21:40:47 +02:00
Cornelius Mika
e019c18cdd
Fix argument quoting
2016-02-24 10:27:51 +01:00
Leandro Ostera
4a49782f31
Merge pull request #790 from oxguy3/patch-4
...
c99: add page
2016-02-23 11:59:57 +01:00
Leandro Ostera
848cea183e
Merge pull request #796 from oxguy3/patch-10
...
cmp: add page
2016-02-23 11:59:09 +01:00
Leandro Ostera
a78a33824a
Merge pull request #795 from oxguy3/patch-9
...
tty: add page
2016-02-23 11:59:04 +01:00
Leandro Ostera
5c56f6ee11
Merge pull request #794 from oxguy3/patch-8
...
Add sh
2016-02-23 11:58:59 +01:00
Leandro Ostera
575bb74103
Merge pull request #797 from oxguy3/patch-3
...
basename: add page
2016-02-23 11:58:53 +01:00
Leandro Ostera
977e586870
Merge pull request #801 from oxguy3/xcv
...
xcv: add page
2016-02-23 11:58:42 +01:00
Hayden Schiff
741014ffcd
slackcat: add page
2016-02-23 00:27:01 -05:00
Hayden Schiff
7885d2d8ab
xcv: add page
2016-02-23 00:20:11 -05:00
Hayden Schiff
bd1cc19fbb
hn: add page
2016-02-23 00:13:25 -05:00
Igor Shubovych
e46376a0ca
Merge pull request #798 from oxguy3/patch-5
...
pwd: fixed minor typo
2016-02-23 03:59:59 +02:00
Igor Shubovych
ab54477533
Linting
2016-02-23 03:54:19 +02:00
Igor Shubovych
81bda40ce3
Merge pull request #783 from oxguy3/patch-2
...
Add chgrp (and tweak chown to match)
2016-02-23 03:52:10 +02:00
Hayden Schiff
c570460c9c
pwd: fixed typo
2016-02-22 20:51:07 -05:00
Hayden Schiff
98bc7a3a66
basename: syntax fix
2016-02-22 20:47:02 -05:00
Hayden Schiff
9ba4a72b27
basename: add page
2016-02-22 20:43:09 -05:00
Hayden Schiff
eb5d016e4a
cmp: add page
2016-02-22 20:29:35 -05:00
Igor Shubovych
c0d0e38c6e
Merge pull request #791 from oxguy3/patch-5
...
fg: add page
2016-02-23 03:27:21 +02:00
Igor Shubovych
b32f8b75f4
Merge pull request #792 from oxguy3/patch-6
...
jobs: add page
2016-02-23 03:25:55 +02:00
Igor Shubovych
f3c9c893d5
Merge pull request #789 from oxguy3/patch-3
...
mkfifo: add page
2016-02-23 03:25:33 +02:00
Hayden Schiff
e70f254f36
tty: add page
2016-02-22 20:18:33 -05:00
Hayden Schiff
8aaaec66c1
bash: parity with `sh`
2016-02-22 20:14:41 -05:00
Hayden Schiff
a8150aafd2
sh: add page
2016-02-22 20:11:29 -05:00
Hayden Schiff
6d32d31628
7z/7za: made it clear that many many archive formats are supported
2016-02-22 20:00:13 -05:00
Hayden Schiff
64fa60df16
7za/7zr: fixed incorrect command names
2016-02-22 19:52:36 -05:00
Hayden Schiff
3caf18e47e
7z/7za/7zr: clearer descriptions, replaced multipart example with list example
2016-02-22 19:51:52 -05:00
Hayden Schiff
d281999eda
c99: clearer plurality
2016-02-22 19:35:42 -05:00
Hayden Schiff
31a65a9348
tput: add page
2016-02-22 19:31:30 -05:00
Igor Shubovych
b566deb4ff
Linting
2016-02-23 01:42:26 +02:00
Hayden Schiff
9445f41bea
fg: fixed verb tense
2016-02-22 18:39:36 -05:00
Hayden Schiff
f50114a721
jobs: added -l flag
2016-02-22 18:33:35 -05:00
Hayden Schiff
151f0b2f32
jobs: add page
2016-02-22 18:26:21 -05:00
Hayden Schiff
a3ebb9d38d
fg: add page
2016-02-22 18:10:16 -05:00
Hayden Schiff
b45ce585c7
c99: add page
2016-02-22 17:59:27 -05:00
Hayden Schiff
c3f3f39888
mkfifo: add page
2016-02-22 17:12:51 -05:00
Hayden Schiff
8257a02c65
7zr: add page (based on 7za)
2016-02-22 16:50:45 -05:00
Hayden Schiff
d824c4f7f3
7z: add page (based on 7za)
2016-02-22 16:50:05 -05:00
Hayden Schiff
1668324a20
7za: noted relation to `7z`
2016-02-22 16:48:56 -05:00
dawidd6
6809fab037
sleep: add page
2016-02-22 22:06:47 +01:00
Hayden Schiff
3d6ae2325f
chown: tweaks for parity with chgrp.md
2016-02-22 15:07:35 -05:00
Hayden Schiff
e1a8a590e1
chgrp: add page
2016-02-22 15:03:35 -05:00
Waldir Pimenta
4b1f1f476a
Merge pull request #779 from slash3b/slash3b
...
visudo and getent were added
2016-02-21 21:52:57 +00:00
slash3b
5de5f06ffb
getent command was added
2016-02-21 16:23:08 +02:00
Waldir Pimenta
f3ba0e6086
Clarify -x option
...
This also makes it easier to understand what `-x` means (eXclude)
2016-02-21 13:31:36 +00:00
Igor Shubovych
bfcd1b1f7a
Merge pull request #780 from ihaolin/patch-1
...
add a zip cmd
2016-02-21 12:16:28 +02:00
Being simple
c0869724ac
modify comment
...
modify comment
2016-02-21 13:03:30 +08:00
Igor Shubovych
08ba9e7c3b
Merge pull request #764 from oxguy3/base64
...
base64: move page to common (and add base32)
2016-02-20 13:11:10 +02:00
Bharadwaj Raju
9a88d3b049
Add apm info to atom.md
...
Earlier pull request had syntax errors; fixed
2016-02-20 16:06:45 +05:30
Being simple
e00f9214ef
add a zip cmd
...
zip exclude some patterns
2016-02-20 11:59:18 +08:00
slash3b
777cb8c67d
visudo command added
2016-02-20 01:09:13 +02:00
Bharadwaj Raju
634e2ee8b4
Add `apm` info to `atom.md`
...
Add basic commands for `apm` (the package manager for Atom) to `atom.md`.
2016-02-19 22:37:29 +05:30
Bharadwaj Raju
8f95eaa45d
Add page for zsh
2016-02-19 22:23:19 +05:30
Leandro Ostera
bcbf7e35fd
Merge pull request #775 from notpeter/java-tools
...
Additional java jhat example
2016-02-18 20:53:46 +01:00
Lin Dong
6249958bc6
Update ag
...
1. Add case-insensitive search example
2016-02-18 09:58:34 -08:00
Peter Tripp
f8d9ee3a35
Add jhat example with larger memory limit.
2016-02-16 16:32:26 -08:00
Igor Shubovych
0c683ca3e3
Merge pull request #770 from kocsenc/crontab-page
...
crontab: add page
2016-02-17 01:26:26 +02:00
Kocsen
50ac087140
crontab: add page
2016-02-16 16:55:23 -05:00
Peter Tripp
99396717c4
Copy pasta oopsies.
2016-02-16 12:36:36 -08:00
Peter Tripp
67e2c723af
Java debug tools. Jstack, jmap and jhat.
2016-02-16 11:27:52 -08:00
Igor Shubovych
4fa8d38779
Merge pull request #771 from lmount/gdb
2016-02-16 10:06:11 +02:00
Leandro Ostera
91a1ed798e
Fixes formatting.
...
Man the commit hooks is definitely not working
on any of muy computers. Need to revisit why.
2016-02-16 08:27:16 +01:00
Leandro Ostera
409944e687
Merge pull request #730 from CBrowne/ls-ltr
...
Adding long format list sorted by reverse mod date
2016-02-16 08:21:05 +01:00
Leandro Ostera
e1ea11d1ef
Fix up formatting and merge conflicts
2016-02-16 08:16:25 +01:00
L. Mountrakis
1db1b4d691
gdb: add page
2016-02-16 00:22:28 +02:00
Bruno Paz
23a4b75bed
Remove spaces from variable names
2016-02-15 22:12:54 +00:00
Bruno Paz
e9fe45d2f9
Add hub command
2016-02-15 20:09:51 +00:00
Leandro Ostera
b7bca90124
Left most common sample only
2016-02-13 00:31:33 +01:00
Leandro Ostera
6cfa475d3c
Merge pull request #651 from WALL-E/master
...
nginx:add stop,quit,reopen,reload
2016-02-13 00:29:33 +01:00
Leandro Ostera
c701cca930
Formatting!
2016-02-13 00:24:52 +01:00
Leandro Ostera
d8d204adee
Merge pull request #290 from therealmarv/more-exiftool
...
add more exiftool examples
2016-02-13 00:24:17 +01:00
Leandro Ostera
5f21c67ead
Embrace the arguments!
2016-02-13 00:11:51 +01:00
Leandro Ostera
0015e71520
Merge pull request #705 from oxguy3/mmv
...
Add mmv
2016-02-13 00:10:47 +01:00
Leandro Ostera
e116366a89
Merge pull request #739 from oxguy3/mitmdump
...
mitmdump: add page
2016-02-13 00:07:33 +01:00
Felix Yan
d632b20eee
Merge pull request #767 from igorshubovych/wc
...
wc: add words example, update characters example
2016-02-11 11:12:31 +08:00
Starbeamrainbowlabs
a76141742f
Added the dirs command
...
Fix build & Add definition of stack
Added reference to pushd/popd in description
2016-02-10 20:20:54 +00:00