How can I check if the number of arguments passed into the shell script is exactly 2?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












0















I have some understanding that to check the number of arguments being passed into the shell script all I have to do inside the shell script is this: Example 1



if [ "$#" -ne 2 ]; then
do something;
fi


However, I am a little confused and would like to know whether the name of the shell script when being run is considered part of the arguments as well as this is the case for python script when it comes to sys.argv.



An example in the terminal would be like:
Example 2



./script.sh $1 $2


In this case for Example 2 how many arguments would actually be considered to be passed in to Example 1 if else loop.










share|improve this question
























  • What result did you get when you tested it?

    – ctrl-alt-delor
    Jan 10 at 11:25















0















I have some understanding that to check the number of arguments being passed into the shell script all I have to do inside the shell script is this: Example 1



if [ "$#" -ne 2 ]; then
do something;
fi


However, I am a little confused and would like to know whether the name of the shell script when being run is considered part of the arguments as well as this is the case for python script when it comes to sys.argv.



An example in the terminal would be like:
Example 2



./script.sh $1 $2


In this case for Example 2 how many arguments would actually be considered to be passed in to Example 1 if else loop.










share|improve this question
























  • What result did you get when you tested it?

    – ctrl-alt-delor
    Jan 10 at 11:25













0












0








0








I have some understanding that to check the number of arguments being passed into the shell script all I have to do inside the shell script is this: Example 1



if [ "$#" -ne 2 ]; then
do something;
fi


However, I am a little confused and would like to know whether the name of the shell script when being run is considered part of the arguments as well as this is the case for python script when it comes to sys.argv.



An example in the terminal would be like:
Example 2



./script.sh $1 $2


In this case for Example 2 how many arguments would actually be considered to be passed in to Example 1 if else loop.










share|improve this question
















I have some understanding that to check the number of arguments being passed into the shell script all I have to do inside the shell script is this: Example 1



if [ "$#" -ne 2 ]; then
do something;
fi


However, I am a little confused and would like to know whether the name of the shell script when being run is considered part of the arguments as well as this is the case for python script when it comes to sys.argv.



An example in the terminal would be like:
Example 2



./script.sh $1 $2


In this case for Example 2 how many arguments would actually be considered to be passed in to Example 1 if else loop.







bash shell-script






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 10 at 18:56









Rui F Ribeiro

39.6k1479132




39.6k1479132










asked Jan 10 at 10:32









user3187113user3187113

31




31












  • What result did you get when you tested it?

    – ctrl-alt-delor
    Jan 10 at 11:25

















  • What result did you get when you tested it?

    – ctrl-alt-delor
    Jan 10 at 11:25
















What result did you get when you tested it?

– ctrl-alt-delor
Jan 10 at 11:25





What result did you get when you tested it?

– ctrl-alt-delor
Jan 10 at 11:25










1 Answer
1






active

oldest

votes


















2














The name of the script is not considered as part of the positional parameters. This means that



somescript arg1 arg2


will set $1 to arg1 and $2 to arg2 and that $# will be 2.



The name of the script will be available in $0, but $0 is special in that it's not included in the array $@, and $# is the length (number of elements) of $@.






share|improve this answer


















  • 1





    thank you! I understand now.

    – user3187113
    Jan 10 at 16:25










Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f493659%2fhow-can-i-check-if-the-number-of-arguments-passed-into-the-shell-script-is-exact%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














The name of the script is not considered as part of the positional parameters. This means that



somescript arg1 arg2


will set $1 to arg1 and $2 to arg2 and that $# will be 2.



The name of the script will be available in $0, but $0 is special in that it's not included in the array $@, and $# is the length (number of elements) of $@.






share|improve this answer


















  • 1





    thank you! I understand now.

    – user3187113
    Jan 10 at 16:25















2














The name of the script is not considered as part of the positional parameters. This means that



somescript arg1 arg2


will set $1 to arg1 and $2 to arg2 and that $# will be 2.



The name of the script will be available in $0, but $0 is special in that it's not included in the array $@, and $# is the length (number of elements) of $@.






share|improve this answer


















  • 1





    thank you! I understand now.

    – user3187113
    Jan 10 at 16:25













2












2








2







The name of the script is not considered as part of the positional parameters. This means that



somescript arg1 arg2


will set $1 to arg1 and $2 to arg2 and that $# will be 2.



The name of the script will be available in $0, but $0 is special in that it's not included in the array $@, and $# is the length (number of elements) of $@.






share|improve this answer













The name of the script is not considered as part of the positional parameters. This means that



somescript arg1 arg2


will set $1 to arg1 and $2 to arg2 and that $# will be 2.



The name of the script will be available in $0, but $0 is special in that it's not included in the array $@, and $# is the length (number of elements) of $@.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 10 at 10:39









KusalanandaKusalananda

126k16239393




126k16239393







  • 1





    thank you! I understand now.

    – user3187113
    Jan 10 at 16:25












  • 1





    thank you! I understand now.

    – user3187113
    Jan 10 at 16:25







1




1





thank you! I understand now.

– user3187113
Jan 10 at 16:25





thank you! I understand now.

– user3187113
Jan 10 at 16:25

















draft saved

draft discarded
















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f493659%2fhow-can-i-check-if-the-number-of-arguments-passed-into-the-shell-script-is-exact%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown






Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay