Non conosco alcun gioco, tuttavia ci sono alcune utili utilità da riga di comando che aiutano.
Cosa fa un comando?
whatis command
# example:
$ whatis cut
cut (1) - remove sections from each line of files
Come posso?
man -k keyword
# example:
$ man -k "remove empty"
rmdir (1) - remove empty directories
In alternativa:
apropos keyword
# defaults to printing every result with at least one of the keywords supplied
# use --and to only print results matching multiple keywords.
$ apropos zip --and extract
funzip (1) - filter for extracting from a ZIP archive in a pipe
unzip (1) - list, test and extract compressed files in a ZIP archive
unzipsfx (1) - self-extracting stub for prepending to ZIP archives
uz (1) - gunzips and extracts a gzip'd tar'd archive
Come si usa?
man command
# example:
man tar
# use '?' key to search, and 'q' to quit.
Oppure, alcune utility supportano un'opzione di aiuto, come:
$ umount --help
Usage: umount -h | -V
umount -a [-d] [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]
umount [-d] [-f] [-r] [-n] [-v] special | node...
Questi possono essere in forma di command -h
, command --help
, command -?
.
Per informazioni:
info command
# example:
$ info cat
# shows an information page
Se hai qualcosa di specifico che devi realizzare, Google è tuo amico. Altrimenti ci sono molti libri, come il libro di Bash di O'Rielly .