Hiçbir oyun bilmiyorum, ancak yardımcı olan bazı komut satırı yardımcı programları var.
Bir komut ne yapar?
whatis command
# example:
$ whatis cut
cut (1) - remove sections from each line of files
Nasıl yapabilirim?
man -k keyword
# example:
$ man -k "remove empty"
rmdir (1) - remove empty directories
Alternatif:
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
Nasıl kullanırım
man command
# example:
man tar
# use '?' key to search, and 'q' to quit.
Veya, bazı kamu hizmetleri aşağıdaki gibi bir yardım seçeneğini destekler:
$ 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...
Bu formunda olabilir command -h
, command --help
, command -?
.
Bilgi için:
info command
# example:
$ info cat
# shows an information page
Yapmanız gereken belirli bir şey varsa, Google arkadaşınızdır. Aksi takdirde , O'Rielly'den Bash kitabı gibi birçok kitap vardır .