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
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
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
Igor Shubovych
4e1da9c809
wc: add words example, update characters example
2016-02-10 19:49:07 +02:00
Leandro Ostera
a9258feb22
Merge pull request #700 from notpeter/openssl2
...
OpenSSL condensing.
2016-02-10 10:19:11 +01:00
Peter Tripp
f61904c45c
Consistent host variable.
2016-02-09 20:58:44 -08:00
Leandro Ostera
f8fa104340
Merge pull request #755 from slash3b/slash3b
...
sftp: add navigation and transfer examples
2016-02-09 11:05:33 +01:00
Leandro Ostera
682a55a781
Fixes -brute description
2016-02-08 14:05:52 +01:00
Leandro Ostera
fa727e83b8
Merge pull request #741 from oxguy3/pngcrush
...
pngcrush: add page
2016-02-08 14:04:02 +01:00
Leandro Ostera
6e3705da36
Merge pull request #759 from loliee/fzf
...
fzf: add page
2016-02-07 14:36:52 +01:00
Leandro Ostera
a357ff2a01
Fixes formatting
2016-02-07 14:31:01 +01:00
Leandro Ostera
94ef83b235
Merge pull request #762 from oxguy3/patch-2
...
sum: add page
2016-02-07 14:30:17 +01:00
slash3b
ecd4b1112b
sftp: add navigation and transfer examples, incorrect commands were deleted.
2016-02-07 13:10:32 +02:00
Igor Shubovych
8432dc5be1
Merge pull request #744 from oxguy3/tldr-tldr
...
tldr: added `--update` example
2016-02-06 15:12:23 +02:00
Igor Shubovych
44b2b9fbf5
Merge pull request #763 from oxguy3/patch-3
...
shred: add page
2016-02-06 15:11:34 +02:00
Leandro Ostera
4f8751d7ad
Fixes trailing whitespace
2016-02-06 12:09:16 +01:00
Leandro Ostera
0898cc2183
Merge pull request #756 from nelsonchung/master
...
Add route.md
2016-02-06 12:07:29 +01:00
Leandro Ostera
50e21bec18
Merge pull request #760 from TiredSounds/fix_xargs_find
...
Change 'ls' example for xargs page to 'find -name'
2016-02-06 03:06:29 +01:00
Felix Yan
1e4f33ae78
Merge pull request #761 from oxguy3/patch-1
...
phpize: add page
2016-02-06 08:58:16 +08:00
TiredSounds
c0c114e033
Include path in find example in xargs page.
2016-02-05 20:48:05 +00:00
Hayden Schiff
dd504d545d
sum: mentioned cksum
2016-02-05 12:05:30 -05:00
Hayden Schiff
6f8ec67bcb
shred: typo fix
2016-02-05 12:03:46 -05:00
Hayden Schiff
ec4634971b
base32: add page
2016-02-05 11:37:35 -05:00
Hayden Schiff
753e94850b
base64: moved from linux to common
2016-02-05 11:37:27 -05:00
Hayden Schiff
1efe814fc7
shred: add page
2016-02-05 11:22:47 -05:00
Hayden Schiff
d904a0b788
sum: add page
2016-02-05 11:04:37 -05:00
Hayden Schiff
4a89cfeafe
phpize: changed bullets
2016-02-05 11:00:30 -05:00
Hayden Schiff
b9614e66dd
phpize: add page
2016-02-05 10:56:40 -05:00
TiredSounds
0419ff65ec
Change 'ls' example for xargs page to 'find -name'
2016-02-04 21:59:35 +00:00
Maxime Loliée
ee92bc7488
fzf: add page
2016-02-04 20:56:56 +01:00
Matthieu Oger
423d71f9e5
awk: add /search/ example
2016-02-04 19:30:40 +01:00
Ruben Vereecken
ad4925e569
Merge pull request #743 from oxguy3/mitmproxy
...
mitmproxy: add page
2016-02-04 05:56:00 -08:00
nelsonchung
525df4d8c5
Add route.md
2016-02-03 11:31:55 +08:00
Leandro Ostera
fa2a2ba150
Merge pull request #748 from nevsan/arp2
...
arp: Generalize to common and add cache clearing.
2016-02-02 08:25:51 +01:00
Leandro Ostera
d419abe00b
Merge pull request #753 from igorshubovych/npm
...
npm: removed some examples and added others
2016-02-02 08:21:49 +01:00
Igor Shubovych
607d56d0a1
Merge pull request #740 from oxguy3/xz
...
xz: add page
2016-02-01 21:41:56 +02:00
Hayden Schiff
4d7fcde503
xz: added "the"
2016-02-01 13:48:59 -05:00
Nevada Sanchez
74d42d3e02
arp: Generalize to common and add cache clearing.
2016-01-31 21:05:33 -05:00
Igor Shubovych
7e4f7e29ae
Merge pull request #738 from oxguy3/dhcpwn
...
dhcpwn: add page
2016-01-30 23:22:42 +02:00
Igor Shubovych
f785b8d431
npm: move 'npm install -g' to the top
2016-01-30 18:15:22 +02:00
Igor Shubovych
7692a0d13a
npm: removed some examples and added others
2016-01-30 15:05:05 +02:00
Igor Shubovych
f708f359eb
xargs: lint, remove controversial example
2016-01-29 15:30:51 +02:00
Alex Flores
85da9a1c03
replace example with an OS agnostic example
2016-01-29 15:30:51 +02:00
Alex Flores
b1d38625d5
adds commands to xargs and moves to pages/common
...
- xargs is also native to OS X
2016-01-29 15:30:51 +02:00
Ruben Vereecken
b48c6b94f5
Merge pull request #713 from oxguy3/tabula
...
Add tabula-extractor
2016-01-29 15:21:35 +02:00
Ruben Vereecken
787919b264
Merge pull request #703 from oxguy3/download-tools
...
Added download tools
2016-01-29 15:21:01 +02:00
Igor Shubovych
283261a029
Merge pull request #742 from oxguy3/optipng
...
optipng: add page
2016-01-28 23:33:14 +02:00
Hayden Schiff
774af43aa4
tldr: added `--update` example
2016-01-28 16:32:43 -05:00
Hayden Schiff
5d671ea965
pngcrush: changed wording to match optipng
2016-01-28 16:27:44 -05:00
Hayden Schiff
5750cca1f7
mitmproxy: "binded"-->"bound"
...
i can write english real good like
2016-01-28 16:22:29 -05:00
Hayden Schiff
f07f4532b2
xz: better compression ratio examples
2016-01-28 16:20:30 -05:00
Hayden Schiff
9a819adb6f
mitmproxy: add page
2016-01-28 16:14:24 -05:00
Hayden Schiff
78eebef66b
optipng: reworded options 2 and 3
2016-01-28 16:07:49 -05:00
Ruben Vereecken
254cc5977c
Merge pull request #702 from oxguy3/csvkit
...
Added most of csvkit
2016-01-28 22:57:37 +02:00
Hayden Schiff
f142b9966f
optipng: add page
2016-01-28 15:47:13 -05:00
Hayden Schiff
c2f3ce125b
pngcrush: add page
2016-01-28 15:44:45 -05:00
Hayden Schiff
c2a39d42c2
xz: add page
2016-01-28 15:42:05 -05:00
Hayden Schiff
9d7a09ebcc
mitmdump: add page
2016-01-28 15:36:32 -05:00
Hayden Schiff
02532061eb
dhcpwn: add page
2016-01-28 15:25:12 -05:00
Hayden Schiff
ac13221b41
csvcut: formatting cleanup
2016-01-28 15:11:53 -05:00
Hayden Schiff
749ca0897d
csvformat: better wording and clarifications
2016-01-28 15:08:47 -05:00
Hayden Schiff
9e24ad78a2
csvpy: changed italics to code formatting
2016-01-28 15:07:06 -05:00
Leandro Ostera
59358f279e
Merge pull request #725 from d33tah/pv
...
Add pv
2016-01-28 19:49:38 +01:00
Jacek Wielemborek
1bc96c237d
Add pv.md.
2016-01-28 18:44:01 +01:00
Seth Woodworth
6692518213
Adds git-add -p instructions
2016-01-28 09:37:49 -05:00
Jacob Clark
fae986d625
Client certificate in cUrl example
2016-01-28 12:12:55 +00:00
Ruben Vereecken
b4304e1050
Fixed damage done by formatter some time ago
2016-01-28 12:41:42 +01:00
Felix Yan
d3fb8144fa
Fixed typo in sails.md after reformatted
2016-01-28 15:43:20 +08:00
Vincent Bel
72548b6443
[lsof] Fixed typo after reformatted
...
The last letter of last word of [the three lines](9676334119 (diff-fe9ad5b63478a92eaf51544c5808ee6cL14)
) was omitted after reformatted.
2016-01-28 14:35:41 +08:00
Ahmet Kun
798ea018a0
grep: add -i option
2016-01-28 00:12:10 +02:00
Caleb Browne
2cdad11a31
Update ls.md
2016-01-27 16:44:05 +00:00
Caleb Browne
92611c992b
Adding long format list sorted by reverse mod date
2016-01-27 16:31:40 +00:00
Igor Shubovych
c79272a73c
Merge pull request #613 from Cvetomird91/read
...
added a page for the read builtin
2016-01-27 10:49:22 +02:00
Cvetomir Denchev
f28c653143
added accidentally removed line
2016-01-27 10:19:21 +02:00
Muhammad-Sharif Moustafa
5bbfd2601d
javac: add -d and multiple files examples
2016-01-27 00:23:26 -05:00
Cvetomir Denchev
b7b24ab692
removed unnecessary lines
2016-01-26 18:05:09 +02:00
Cvetomir Denchev
526bc1aaba
added missing closing backticks
2016-01-26 11:52:58 +02:00
Cvetomir Denchev
b0d9304892
removed git symbols
2016-01-26 11:50:08 +02:00
Cvetomir Denchev
e1ddb560fe
removed git symbols
2016-01-26 11:46:05 +02:00
Cvetomir Denchev
f194b860d0
fixed conflict
2016-01-26 11:43:58 +02:00
Cvetomird91
9547f8992c
added a page for the read builtin
2016-01-26 11:40:56 +02:00
Igor Shubovych
9cd44a9de0
Merge pull request #714 from oxguy3/atom
...
Add atom
2016-01-25 11:43:43 +02:00
Ruben Vereecken
a5409ed437
Edited pigz to more fitting examples
2016-01-25 00:24:49 +01:00
Ruben Vereecken
ac5eb74c78
Merge branch 'master' of git://github.com/kenetik/tldr into kenetik-master
2016-01-25 00:21:49 +01:00
Ruben Vereecken
98c99b1558
Formatted and cut away 3 examples from nix-env
2016-01-25 00:15:36 +01:00
Zekai.Zheng
745a0ddca7
Add the nix-env for common
2016-01-25 00:15:36 +01:00
Ruben Vereecken
43d3566a0f
Merge pull request #706 from oxguy3/redshift
...
Add Redshift
2016-01-24 12:04:42 +02:00
Hayden Schiff
5676e5892d
in2csv: better example for piping / `-f` flag
2016-01-24 02:10:38 -05:00
Hayden Schiff
7e582eebf0
lwp-request: reference to libwww-perl
2016-01-24 02:05:29 -05:00
Ruben Vereecken
a72d5a28fc
Merge pull request #711 from oxguy3/license
...
Add license
2016-01-23 23:21:55 +02:00
Ruben Vereecken
00357ca6ee
Merge pull request #710 from notpeter/raa-fix
...
w: add -i example, uniq: additions, seq: add page
2016-01-23 19:05:14 +02:00
Pradeep Reddy Raamana
525f436cc8
w: split out of common and add -i to osx, uniq: additions, seq: add page
2016-01-23 09:03:00 -08:00
Ruben Vereecken
aee511ad15
Merge pull request #696 from bobstrecansky/master
...
-H instead of --head for cURL, adding verbose output
2016-01-23 12:06:39 +02:00