उपयोग getopt
क्यों मिलता है?
भ्रम से बचने और उन विकल्पों को स्पष्ट करने के लिए जिन्हें हम पार्स कर रहे हैं, स्पष्ट करने के लिए विस्तृत कमांड-लाइन तर्कों को पार्स करने के लिए ताकि जो हो रहा है उसे समझ सकें।
अडॉप्ट क्या है?
getopt
शेल प्रक्रियाओं द्वारा आसान पार्सिंग के लिए कमांड लाइनों में ब्रेक अप (पार्स) विकल्प और कानूनी विकल्पों की जांच करने के लिए उपयोग किया जाता है। यह ऐसा करने के लिए GNU getopt(3)
रूटीन का उपयोग करता है ।
getopt
निम्न प्रकार के विकल्प हो सकते हैं।
- नो-वैल्यू विकल्प
- कुंजी-मूल्य जोड़ी विकल्प
नोट: इस दस्तावेज़ में, वाक्यविन्यास की व्याख्या के दौरान:
- सिंटैक्स / उदाहरणों के अंदर [] कुछ भी वैकल्पिक पैरामीटर है।
- एक स्थान धारक है, जिसका अर्थ है कि इसे वास्तविक मूल्य के साथ प्रतिस्थापित किया जाना चाहिए।
उपयोग कैसे करें getopt
?
वाक्य रचना: पहला रूप
getopt optstring parameters
उदाहरण:
# This is correct
getopt "hv:t::" "-v 123 -t123"
getopt "hv:t::" "-v123 -t123" # -v and 123 doesn't have whitespace
# -h takes no value.
getopt "hv:t::" "-h -v123"
# This is wrong. after -t can't have whitespace.
# Only optional params cannot have whitespace between key and value
getopt "hv:t::" "-v 123 -t 123"
# Multiple arguments that takes value.
getopt "h:v:t::g::" "-h abc -v 123 -t21"
# Multiple arguments without value
# All of these are correct
getopt "hvt" "-htv"
getopt "hvt" "-h -t -v"
getopt "hvt" "-tv -h"
यहाँ h, v, t विकल्प हैं और -h -v -t यह है कि कमांड-लाइन में विकल्प कैसे दिए जाने चाहिए।
- 'h' नो-वैल्यू विकल्प है।
- 'v:' का अर्थ है कि विकल्प -v का मान है और यह एक अनिवार्य विकल्प है। ':' का अर्थ है एक मूल्य।
- 't ::' का अर्थ है कि विकल्प -t का मान है, लेकिन वैकल्पिक है। '::' का अर्थ है वैकल्पिक।
वैकल्पिक परम में, मान में विकल्प के साथ व्हाट्सएप पृथक्करण नहीं हो सकता है। तो, "-t123" उदाहरण में, -t विकल्प 123 है मूल्य है।
वाक्य-विन्यास: दूसरा रूप
getopt [getopt_options] [--] [optstring] [parameters]
यहां गेटअप के बाद पांच हिस्सों में बंट जाता है
- खुद ही कमांड यानी गेटअप
- Getopt_options, यह बताता है कि तर्कों को कैसे पार्स किया जाए। एकल डैश लंबे विकल्प, दोहरे डैश विकल्प।
- -, उन विकल्पों में से getopt_options को अलग करता है जिन्हें आप पार्स करना चाहते हैं और अनुमत छोटे विकल्प
- संक्षिप्त विकल्प, के तुरंत बाद लिया जाता है - पाया जाता है। जैसे फॉर्म पहले सिंटेक्स।
- पैरामीटर, ये विकल्प हैं जो आपने कार्यक्रम में पारित किए हैं। जिन विकल्पों को आप पार्स करना चाहते हैं और उन पर निर्धारित वास्तविक मूल्य प्राप्त करना चाहते हैं।
उदाहरण
getopt -l "name:,version::,verbose" -- "n:v::V" "--name=Karthik -version=5.2 -verbose"
सिंटेक्स: तीसरा रूप
getopt [getopt_options] [-o options] [--] [optstring] [parameters]
यहां गेटअप के बाद पांच हिस्सों में बंट जाता है
- खुद ही कमांड यानी गेटअप
- Getopt_options, यह बताता है कि तर्कों को कैसे पार्स किया जाए। एकल डैश लंबे विकल्प, दोहरे डैश विकल्प।
- छोटे विकल्प यानी -ओ या गोद लेने वाले। जैसे फॉर्म पहले सिंटैक्स लेकिन विकल्प "-o" और "-" (डबल डैश) से पहले।
- -, उन विकल्पों में से getopt_options को अलग करता है जिन्हें आप पार्स करना चाहते हैं और अनुमत छोटे विकल्प
- पैरामीटर, ये विकल्प हैं जो आपने कार्यक्रम में पारित किए हैं। जिन विकल्पों को आप पार्स करना चाहते हैं और उन पर निर्धारित वास्तविक मूल्य प्राप्त करना चाहते हैं।
उदाहरण
getopt -l "name:,version::,verbose" -a -o "n:v::V" -- "-name=Karthik -version=5.2 -verbose"
GETOPT_OPTIONS
getopt_options कमांड-लाइन परमेस को पार्स करने के तरीके को बदल देता है।
नीचे कुछ getopt_options दिए गए हैं
विकल्प: -l या - अनुगामी
साधन प्राप्त करने के आदेश को बहु-चरित्र विकल्पों को मान्यता देने की अनुमति देनी चाहिए। कई विकल्प कॉमा द्वारा अलग किए जाते हैं।
उदाहरण के लिए, --name=Karthik
कमांड लाइन में भेजा गया एक लंबा विकल्प है। गेटअप में, लंबे विकल्पों का उपयोग करना पसंद करते हैं
getopt "name:,version" "--name=Karthik"
चूंकि नाम: निर्दिष्ट है, विकल्प में एक मान होना चाहिए
विकल्प: -ए या - अल्टरनेटिव
मीन्स गेटअप कमांड को एक सिंगल डैश के लिए लंबे विकल्प की अनुमति देनी चाहिए - 'डबल डैश के बजाय' - '।
उदाहरण, --name=Karthik
आप के बजाय बस का उपयोग कर सकते हैं-name=Karthik
getopt "name:,version" "-name=Karthik"
कोड के साथ एक पूरी स्क्रिप्ट उदाहरण:
#!/bin/bash
# filename: commandLine.sh
# author: @theBuzzyCoder
showHelp() {
# `cat << EOF` This means that cat should stop reading when EOF is detected
cat << EOF
Usage: ./installer -v <espo-version> [-hrV]
Install Pre-requisites for EspoCRM with docker in Development mode
-h, -help, --help Display help
-v, -espo-version, --espo-version Set and Download specific version of EspoCRM
-r, -rebuild, --rebuild Rebuild php vendor directory using composer and compiled css using grunt
-V, -verbose, --verbose Run script in verbose mode. Will print out each step of execution.
EOF
# EOF is found above and hence cat command stops reading. This is equivalent to echo but much neater when printing out.
}
export version=0
export verbose=0
export rebuilt=0
# $@ is all command line parameters passed to the script.
# -o is for short options like -v
# -l is for long options with double dash like --version
# the comma separates different long options
# -a is for long options with single dash like -version
options=$(getopt -l "help,version:,verbose,rebuild,dryrun" -o "hv:Vrd" -a -- "$@")
# set --:
# If no arguments follow this option, then the positional parameters are unset. Otherwise, the positional parameters
# are set to the arguments, even if some of them begin with a ‘-’.
eval set -- "$options"
while true
do
case $1 in
-h|--help)
showHelp
exit 0
;;
-v|--version)
shift
export version=$1
;;
-V|--verbose)
export verbose=1
set -xv # Set xtrace and verbose mode.
;;
-r|--rebuild)
export rebuild=1
;;
--)
shift
break;;
esac
shift
done
इस स्क्रिप्ट फ़ाइल को चलाना:
# With short options grouped together and long option
# With double dash '--version'
bash commandLine.sh --version=1.0 -rV
# With short options grouped together and long option
# With single dash '-version'
bash commandLine.sh -version=1.0 -rV
# OR with short option that takes value, value separated by whitespace
# by key
bash commandLine.sh -v 1.0 -rV
# OR with short option that takes value, value without whitespace
# separation from key.
bash commandLine.sh -v1.0 -rV
# OR Separating individual short options
bash commandLine.sh -v1.0 -r -V
-s
, यह एक स्थितीय तर्क:./myscript 45 anystring
।