मैं किसी भी खेल के बारे में नहीं जानता, हालांकि कुछ उपयोगी कमांड लाइन उपयोगिताएं हैं जो मदद करती हैं।
एक कमांड क्या करती है?
whatis command
# example:
$ whatis cut
cut (1) - remove sections from each line of files
मैं कैसे?
man -k keyword
# example:
$ man -k "remove empty"
rmdir (1) - remove empty directories
वैकल्पिक रूप से:
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
मैं कैसे उपयोग करूं?
man command
# example:
man tar
# use '?' key to search, and 'q' to quit.
या, कुछ उपयोगिताएँ एक सहायता विकल्प का समर्थन करती हैं, जैसे:
$ 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...
इन के रूप में हो सकता है command -h
, command --help
, command -?
।
जानकारी के लिए:
info command
# example:
$ info cat
# shows an information page
यदि आपके पास कुछ विशिष्ट है जिसे आपको पूरा करने की आवश्यकता है, तो Google आपका मित्र है। अन्यथा कई किताबें हैं, जैसे ओ'रेली से बैश किताब ।