man -> tldr

http://tldr.sh/
Demo: https://tldr.ostera.io/tar

$ man tar
tar [-] A --catenate --concatenate | c --create | d --diff --compare |
--delete | r --append | t --list | --test-label | u --update | x
--extract --get [options] [pathname ...]

DESCRIPTION
Tar stores and extracts files from a tape or disk archive.

The first argument to tar should be a function; either one of the letters
Acdrtux, or one of the long function names. A function letter need not
be prefixed with ``-'', and may be combined with other single-letter
options. A long function name must be prefixed with --. Some options
take a parameter; with the single-letter form these must be given as sep-
arate arguments. With the long form, they may be given by appending
=value to the option.
[...]

$ tldr tar
Archiving utility. Often combined with a compression method, such as gzip or bzip.

Create an archive from files:
tar cf {{target.tar}} {{file1 file2 file3}}

Create a gzipped archive:
tar czf {{target.tar.gz}} {{file1 file2 file3}}

Extract an archive in a target folder:
tar xf {{source.tar}} -C {{folder}}

Extract a gzipped archive in the current directory:
tar xzf {{source.tar.gz}}

Extract a bzipped archive in the current directory:
tar xjf {{source.tar.bz2}}

Create a compressed archive, using archive suffix to determine the compression program:
tar caf {{target.tar.xz}} {{file1 file2 file3}}

List the contents of a tar file:
tar tvf {{source.tar}}

via https://thenextweb.com/dd/2017/11/24/tldr-linux-man-pages-always/

Hozzászólások

jópofa meg minden, de komolyan szükség van erre?
ha már téma, én amondó vagyok írjunk normális, érthető manualokat.

"all submitted complaints will be forwarded to /dev/null for further investigation"

"Szerintem szükség lehet rövid használati útmutatásra, és teljes, minden opciót felvonultató dokumentációra is."

Van ilyen minden parancsnál a --help opcióval érhető el. A tar-nál mondjuk pont tl;dr. még a --help is, de ez kivételes, a legtöbbször jó velős a --help, pont amire szükség van munka közben!

Én többet használom a --help kapcsolót mint a man parancsot. 90-10% arányban.

Hasznos. Köszi a linket.

----------------------------
Az emberiség valaha volt legnagyobb tévedése a dízel személyautó...

Off: szerintem ez ronda GNU-izmus:
tar xf {{source.tar}} -C {{folder}}
Helyette:
tar -C {{folder}} -xf {{source.tar}}

reoff:
A DMOS Operátori kézikönyv 1987. márciusi, 1. kiadása szerint nincs egyáltalán -C opció, ellenben a kulcs ( c vagy x vagy t .... ) paraméter elé nem kell kötőjel. Ráadásul még a példa is így írja:


cd fromdir ; tar cf - . | ( cd todir ; tar xf - )

És az is tény, hogy elég sok nem-GNU rendszerben találkoztam már a paraméterlista vége felé a "-C dir" opcióval.

=====
tl;dr
Egy-két mondatban leírnátok, hogy lehet ellopni egy bitcoin-t?