Saya tidak tahu permainan apa pun, namun ada beberapa utilitas baris perintah yang berguna yang membantu.
Apa yang dilakukan perintah?
whatis command
# example:
$ whatis cut
cut (1) - remove sections from each line of files
Bagaimana saya?
man -k keyword
# example:
$ man -k "remove empty"
rmdir (1) - remove empty directories
Kalau tidak:
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
Bagaimana saya menggunakan?
man command
# example:
man tar
# use '?' key to search, and 'q' to quit.
Atau, beberapa utilitas mendukung opsi bantuan, seperti:
$ 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...
Ini mungkin dalam bentuk command -h
, command --help
, command -?
.
Untuk informasi:
info command
# example:
$ info cat
# shows an information page
Jika Anda memiliki sesuatu yang spesifik yang perlu Anda capai, Google adalah teman Anda. Kalau tidak, ada banyak buku, seperti buku Bash dari O'Rielly .