Tôi không biết về bất kỳ trò chơi nào, tuy nhiên có một số tiện ích dòng lệnh hữu ích.
Một lệnh làm gì?
whatis command
# example:
$ whatis cut
cut (1) - remove sections from each line of files
Làm thế nào để tôi?
man -k keyword
# example:
$ man -k "remove empty"
rmdir (1) - remove empty directories
Cách khác:
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
Làm thế nào để tôi sử dụng?
man command
# example:
man tar
# use '?' key to search, and 'q' to quit.
Hoặc, một số tiện ích hỗ trợ tùy chọn trợ giúp, chẳng hạn như:
$ 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...
Đây có thể là theo hình thức command -h
, command --help
, command -?
.
Để biết thông tin:
info command
# example:
$ info cat
# shows an information page
Nếu bạn có một cái gì đó cụ thể bạn cần phải hoàn thành, Google là bạn của bạn. Mặt khác, có rất nhiều sách, chẳng hạn như cuốn sách Bash của O'Rielly .