Bash - (Argument|Positional Parameter)

Bash Liste Des Attaques Ovh

About

An argument is a parameter given:

They are referenced by position.

A positional parameter is a parameter denoted:

  • by one or more digits,
  • other than the single digit 0.

Positional parameters are assigned from the shell’s arguments when it is invoked, and may be reassigned using the set builtin command. Positional parameters may not be assigned to with assignment statements. The positional parameters are temporarily replaced when a shell function is executed. When a positional parameter consisting of more than a single digit is expanded, it must be enclosed in braces.

How to loop or parse them?

To parse positional parameters, you can use the getopts command

but you can also loop over them:

for arg in "$@"; do
  echo "$arg"
done
while [[ $# -gt 0 ]]
do
   echo $1
   shift
done

Special Parameters

There is some special parameter that gives extra function around positional parameters.

$0

The script name.

echo $0
/bin/bash

Star ($*) - Single Word

* Expands to the positional parameters, starting from one. When the expansion occurs within double quotes, it expands to a single word with the value of each parameter separated by the first character of the IFS special variable.

That is, $* is equivalent to $1c$2c..., where c is the first character of the value of the IFS variable. If IFS is unset, the parameters are separated by spaces. If IFS is null, the parameters are joined without intervening separators.

$*: All of the positional parameters, seen as a single word

“$*” must be quoted.

$1, $2, etc.

Positional parameters, passed:

At ($@)

@ expands to the positional parameters, starting from one.

  • When the expansion occurs within double quotes, each parameter expands to a separate word. That is, "$@" is equivalent to "$1", "$2"
  • If the double-quoted expansion occurs within a word, the expansion of the first parameter is joined with the beginning part of the original word, and the expansion of the last parameter is joined with the last part of the original word.
  • When there are no positional parameters,"$@" and $@ expand to nothing (i.e., they are removed).

Number of positional parameters (# Hashtag)

$#:

echo $#
0

Explicit Null

The explicit null parameters are:

""
# or
''

Management

Shift method

Bash - Shift

Test if set

Because an argument is a parameter, we can use the parameter expansion in a conditional expression to test if it's set.

if [ -z ${1+x} ]; then echo "1 is unset"; else echo "1 is set to '$1'"; fi
# or
if !([ -z ${1+x} ]); then echo "1 is set to '$1'"; else echo "1 is unset "; fi
if [ -n ${1+x} ]; then echo "1 is set to '$1'"; else echo "1 is unset"; fi
# or
if !([ -n ${1+x} ]); then echo "1 is no set"; else echo "1 is set to '$1'"; fi

Passing

  • When passing a string as an argument to a function, if the string is not quoted it will be parsed according to the IFS separator

Bash - How to pass arguments that have space in their values ?

Parsing

If the script expect the below arguments:

./script.sh --server serviceName --silent

It can parse them like that:

while [[ $# -gt 0 ]]
do
    case "$1" in
        --service)
            # Run in service mode
            shift # past argument
            SERVICE_FILE=$1
            shift
        ;;
        --silent)
            SILENT_MODE=1
            shift
        ;;
        *)
            # unknown option
            shift # past argument with no value
        ;;
    esac
done

with the help of:

Documentation / Reference





Discover More
Bash Liste Des Attaques Ovh
Bash - (Argument|Positional Parameter)

An argument is a parameter given: to a command to a function or to the bash shell They are referenced by position. A positional parameter is a parameter denoted: by one or more digits, ...
Bash Liste Des Attaques Ovh
Bash - Bash cli

Bash is an sh-compatible a shell that executes commands read: from the standard input or from a file (script). In addition to the single-character shell options documented in the description...
Bash Liste Des Attaques Ovh
Bash - Colon (:) Builtin command

The : builtin command does nothing beyond: expanding its arguments and performing any specified redirections. A zero exit code is returned.
Bash Liste Des Attaques Ovh
Bash - Command (The Builtin command command)

command The command function suppress the the shell function lookup in the search command order. For command as a bash definition, see . where: command is the command to execute. Only builtin...
Bash Liste Des Attaques Ovh
Bash - Conditional Operator

Conditional Operator are option like syntax (ie -x) that are used in a conditional expression -f to check if the path is a file -d to check if the path is a directory -n to check if a variable/parameter...
Bash Liste Des Attaques Ovh
Bash - Exec (No New Process) - builtin command

If command is specified, it replaces the shell. No new process is created. The shell terminates. where: arguments become the arguments to command. -l the shell places a dash at the beginning...
Bash Liste Des Attaques Ovh
Bash - Expansion

This article is expansion in Bash. An expansion is the replacement of a special token in your code by the result of the expansion during code execution. It's performed on the command line after it has...
Bash Liste Des Attaques Ovh
Bash - Function

A shell function is an object that: is called like a simple command and executes a compound command with a new set of positional parameters. By convention, the function name starts with an underscore....
Bash Liste Des Attaques Ovh
Bash - How to pass arguments that have space in their values ?

This article shows you how to pass arguments that have space characters in their values. Passing several arguments to a function that are stored as a string may not work properly when you have space...
Bash Liste Des Attaques Ovh
Bash - IFS (Field Separator)

The field separator is a set of character that defines one or more field separator that separates (delimit) field (word) in a string. DELIM It's defined in the IFS variable parameters statement...



Share this page:
Follow us:
Task Runner