How can I check if the number of arguments passed into the shell script is exactly 2?
Clash Royale CLAN TAG#URR8PPP
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
add a comment |
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
What result did you get when you tested it?
– ctrl-alt-delor
Jan 10 at 11:25
add a comment |
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
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
bash shell-script
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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 $@
.
1
thank you! I understand now.
– user3187113
Jan 10 at 16:25
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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 $@
.
1
thank you! I understand now.
– user3187113
Jan 10 at 16:25
add a comment |
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 $@
.
1
thank you! I understand now.
– user3187113
Jan 10 at 16:25
add a comment |
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 $@
.
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 $@
.
answered Jan 10 at 10:39
KusalanandaKusalananda
126k16239393
126k16239393
1
thank you! I understand now.
– user3187113
Jan 10 at 16:25
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
What result did you get when you tested it?
– ctrl-alt-delor
Jan 10 at 11:25