2024-04-02 21:19:20 +02:00
|
|
|
---
|
|
|
|
tags:
|
|
|
|
- bash
|
|
|
|
- shell
|
|
|
|
- scripting
|
|
|
|
- pitfalls
|
|
|
|
- traps
|
|
|
|
- beginners
|
|
|
|
---
|
2023-07-05 11:31:29 +02:00
|
|
|
|
2024-04-02 21:19:20 +02:00
|
|
|
# Beginner Mistakes
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
Here are some typical traps:
|
|
|
|
|
|
|
|
## Script execution
|
|
|
|
|
|
|
|
### Your perfect Bash script executes with syntax errors
|
|
|
|
|
|
|
|
If you write Bash scripts with Bash specific syntax and features, run
|
2024-10-08 06:00:17 +02:00
|
|
|
them with <u>Bash</u>, and run them with Bash in <u>native
|
|
|
|
mode</u>.
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
**Wrong**:
|
|
|
|
|
|
|
|
- no shebang
|
|
|
|
- the interpreter used depends on the OS implementation and
|
|
|
|
current shell
|
|
|
|
- **can** be run by calling bash with the script name as an
|
|
|
|
argument, e.g. `bash myscript`
|
|
|
|
- `#!/bin/sh` shebang
|
|
|
|
- depends on what `/bin/sh` actually is, for a Bash it means
|
|
|
|
compatiblity mode, **not** native mode
|
|
|
|
|
|
|
|
See also:
|
|
|
|
|
2024-01-29 02:01:50 +01:00
|
|
|
- [Bash startup mode: SH mode](../scripting/bashbehaviour.md#sh_mode)
|
|
|
|
- [Bash run mode: POSIX mode](../scripting/bashbehaviour.md#posix_run_mode)
|
2023-07-05 11:31:29 +02:00
|
|
|
|
2024-10-08 06:00:17 +02:00
|
|
|
### Your script named "test" doesn't execute
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
Give it another name. The executable `test` already exists.
|
|
|
|
|
2024-03-30 19:22:45 +01:00
|
|
|
In Bash it's a builtin. With other shells, it might be an executable
|
|
|
|
file. Either way, it's bad name choice!
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
Workaround: You can call it using the pathname:
|
|
|
|
|
|
|
|
/home/user/bin/test
|
|
|
|
|
|
|
|
## Globbing
|
|
|
|
|
|
|
|
### Brace expansion is not globbing
|
|
|
|
|
|
|
|
The following command line is not related to globbing (filename
|
|
|
|
expansion):
|
|
|
|
|
|
|
|
# YOU EXPECT
|
|
|
|
# -i1.vob -i2.vob -i3.vob ....
|
|
|
|
|
|
|
|
echo -i{*.vob,}
|
|
|
|
|
|
|
|
# YOU GET
|
|
|
|
# -i*.vob -i
|
|
|
|
|
|
|
|
**Why?** The brace expansion is simple text substitution. All possible
|
|
|
|
text formed by the prefix, the postfix and the braces themselves are
|
|
|
|
generated. In the example, these are only two: `-i*.vob` and `-i`. The
|
|
|
|
filename expansion happens **after** that, so there is a chance that
|
|
|
|
`-i*.vob` is expanded to a filename - if you have files like
|
2024-03-30 20:09:26 +01:00
|
|
|
`-ihello.vob`. But it definitely doesn't do what you expected.
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
Please see:
|
|
|
|
|
2024-01-29 02:01:50 +01:00
|
|
|
- [brace](../syntax/expansion/brace.md)
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
## Test-command
|
|
|
|
|
|
|
|
- `if [ $foo ] ...`
|
|
|
|
- `if [-d $dir] ...`
|
|
|
|
- \...
|
|
|
|
|
|
|
|
Please see:
|
|
|
|
|
|
|
|
- [The classic test command -
|
2024-01-29 02:01:50 +01:00
|
|
|
pitfalls](../commands/classictest.md#pitfalls_summarized)
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
## Variables
|
|
|
|
|
|
|
|
### Setting variables
|
|
|
|
|
|
|
|
#### The Dollar-Sign
|
|
|
|
|
|
|
|
There is no `$` (dollar-sign) when you reference the **name** of a
|
|
|
|
variable! Bash is not PHP!
|
|
|
|
|
|
|
|
# THIS IS WRONG!
|
|
|
|
$myvar="Hello world!"
|
|
|
|
|
|
|
|
A variable name preceeded with a dollar-sign always means that the
|
|
|
|
variable gets **expanded**. In the example above, it might expand to
|
2024-03-30 20:09:26 +01:00
|
|
|
nothing (because it wasn't set), effectively resulting in\...
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
="Hello world!"
|
|
|
|
|
|
|
|
\...which **definitely is wrong**!
|
|
|
|
|
|
|
|
When you need the **name** of a variable, you write **only the name**,
|
|
|
|
for example
|
|
|
|
|
|
|
|
- (as shown above) to set variables:
|
|
|
|
`picture=/usr/share/images/foo.png`
|
|
|
|
- to name variables to be used by the `read` builtin command:
|
|
|
|
`read picture`
|
|
|
|
- to name variables to be unset: `unset picture`
|
|
|
|
|
|
|
|
When you need the **content** of a variable, you prefix its name with
|
|
|
|
**a dollar-sign**, like
|
|
|
|
|
|
|
|
- echo \"The used picture is: \$picture\"
|
|
|
|
|
|
|
|
#### Whitespace
|
|
|
|
|
|
|
|
Putting spaces on either or both sides of the equal-sign (`=`) when
|
|
|
|
assigning a value to a variable **will** fail.
|
|
|
|
|
|
|
|
# INCORRECT 1
|
|
|
|
example = Hello
|
|
|
|
|
|
|
|
# INCORRECT 2
|
|
|
|
example= Hello
|
|
|
|
|
|
|
|
# INCORRECT 3
|
|
|
|
example =Hello
|
|
|
|
|
|
|
|
The only valid form is **no spaces between the variable name and
|
|
|
|
assigned value**:
|
|
|
|
|
|
|
|
# CORRECT 1
|
|
|
|
example=Hello
|
|
|
|
|
|
|
|
# CORRECT 2
|
|
|
|
example=" Hello"
|
|
|
|
|
|
|
|
### Expanding (using) variables
|
|
|
|
|
2024-03-30 19:22:45 +01:00
|
|
|
A typical beginner's trap is quoting.
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
As noted above, when you want to **expand** a variable i.e. \"get the
|
|
|
|
content\", the variable name needs to be prefixed with a dollar-sign.
|
|
|
|
But, since Bash knows various ways to quote and does word-splitting, the
|
2024-03-30 20:09:26 +01:00
|
|
|
result isn't always the same.
|
2023-07-05 11:31:29 +02:00
|
|
|
|
2024-03-30 19:22:45 +01:00
|
|
|
Let's define an example variable containing text with spaces:
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
example="Hello world"
|
|
|
|
|
|
|
|
Used form result number of words
|
|
|
|
-------------- --------------- -----------------
|
|
|
|
`$example` `Hello world` 2
|
|
|
|
`"$example"` `Hello world` 1
|
|
|
|
`\$example` `$example` 1
|
|
|
|
`'$example'` `$example` 1
|
|
|
|
|
|
|
|
If you use parameter expansion, you **must** use the **name** (`PATH`)
|
|
|
|
of the referenced variables/parameters. i.e. **not** (`$PATH`):
|
|
|
|
|
|
|
|
# WRONG!
|
|
|
|
echo "The first character of PATH is ${$PATH:0:1}"
|
|
|
|
|
|
|
|
# CORRECT
|
|
|
|
echo "The first character of PATH is ${PATH:0:1}"
|
|
|
|
|
|
|
|
Note that if you are using variables in [arithmetic
|
2024-01-29 02:01:50 +01:00
|
|
|
expressions](../syntax/arith_expr.md), then the bare **name** is allowed:
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
((a=$a+7)) # Add 7 to a
|
|
|
|
((a = a + 7)) # Add 7 to a. Identical to the previous command.
|
|
|
|
((a += 7)) # Add 7 to a. Identical to the previous command.
|
|
|
|
|
|
|
|
a=$((a+7)) # POSIX-compatible version of previous code.
|
|
|
|
|
|
|
|
Please see:
|
|
|
|
|
2024-01-29 02:01:50 +01:00
|
|
|
- [words](../syntax/words.md)
|
|
|
|
- [quoting](../syntax/quoting.md)
|
|
|
|
- [wordsplit](../syntax/expansion/wordsplit.md)
|
|
|
|
- [pe](../syntax/pe.md)
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
### Exporting
|
|
|
|
|
|
|
|
Exporting a variable means giving **newly created** (child-)processes a
|
|
|
|
copy of that variable. It does **not** copy a variable created in a
|
|
|
|
child process back to the parent process. The following example does
|
|
|
|
**not** work, since the variable `hello` is set in a child process (the
|
|
|
|
process you execute to start that script `./script.sh`):
|
|
|
|
|
|
|
|
$ cat script.sh
|
|
|
|
export hello=world
|
|
|
|
|
|
|
|
$ ./script.sh
|
|
|
|
$ echo $hello
|
|
|
|
$
|
|
|
|
|
|
|
|
Exporting is one-way. The direction is from parent process to child
|
|
|
|
process, not the reverse. The above example **will** work, when you
|
2024-03-30 20:09:26 +01:00
|
|
|
don't execute the script, but include (\"source\") it:
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
$ source ./script.sh
|
|
|
|
$ echo $hello
|
|
|
|
world
|
|
|
|
$
|
|
|
|
|
|
|
|
In this case, the export command is of no use.
|
|
|
|
|
|
|
|
Please see:
|
|
|
|
|
2024-01-29 02:01:50 +01:00
|
|
|
- [processtree](../scripting/processtree.md)
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
## Exit codes
|
|
|
|
|
|
|
|
### Reacting to exit codes
|
|
|
|
|
|
|
|
If you just want to react to an exit code, regardless of its specific
|
2024-03-30 20:09:26 +01:00
|
|
|
value, you **don't need** to use `$?` in a test command like this:
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
``` bash
|
|
|
|
grep ^root: /etc/passwd >/dev/null 2>&1
|
|
|
|
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "root was not found - check the pub at the corner"
|
|
|
|
fi
|
|
|
|
```
|
|
|
|
|
|
|
|
This can be simplified to:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
if ! grep ^root: /etc/passwd >/dev/null 2>&1; then
|
|
|
|
echo "root was not found - check the pub at the corner"
|
|
|
|
fi
|
|
|
|
```
|
|
|
|
|
|
|
|
Or, simpler yet:
|
|
|
|
|
|
|
|
``` bash
|
|
|
|
grep ^root: /etc/passwd >/dev/null 2>&1 || echo "root was not found - check the pub at the corner"
|
|
|
|
```
|
|
|
|
|
2024-03-30 19:22:45 +01:00
|
|
|
If you need the specific value of `$?`, there's no other choice. But if
|
|
|
|
you need only a \"true/false\" exit indication, there's no need for
|
2023-07-05 11:31:29 +02:00
|
|
|
`$?`.
|
|
|
|
|
|
|
|
See also:
|
|
|
|
|
2024-01-29 02:01:50 +01:00
|
|
|
- [Exit codes](../scripting/basics.md#exit_codes)
|
2023-07-05 11:31:29 +02:00
|
|
|
|
|
|
|
### Output vs. Return Value
|
|
|
|
|
2024-03-30 19:22:45 +01:00
|
|
|
It's important to remember the different ways to run a child command,
|
2023-07-05 11:31:29 +02:00
|
|
|
and whether you want the output, the return value, or neither.
|
|
|
|
|
|
|
|
When you want to run a command (or a pipeline) and save (or print) the
|
2024-03-30 19:22:45 +01:00
|
|
|
**output**, whether as a string or an array, you use Bash's
|
2023-07-05 11:31:29 +02:00
|
|
|
`$(command)` syntax:
|
|
|
|
|
|
|
|
$(ls -l /tmp)
|
|
|
|
newvariable=$(printf "foo")
|
|
|
|
|
|
|
|
When you want to use the **return value** of a command, just use the
|
|
|
|
command, or add ( ) to run a command or pipeline in a subshell:
|
|
|
|
|
|
|
|
if grep someuser /etc/passwd ; then
|
|
|
|
# do something
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ( w | grep someuser | grep sqlplus ) ; then
|
|
|
|
# someuser is logged in and running sqlplus
|
|
|
|
fi
|
|
|
|
|
|
|
|
Make sure you\'re using the form you intended:
|
|
|
|
|
|
|
|
# WRONG!
|
|
|
|
if $(grep ERROR /var/log/messages) ; then
|
|
|
|
# send alerts
|
|
|
|
fi
|
|
|
|
|
|
|
|
Please see:
|
|
|
|
|
2024-01-29 02:01:50 +01:00
|
|
|
- [intro](../syntax/ccmd/intro.md)
|
|
|
|
- [cmdsubst](../syntax/expansion/cmdsubst.md)
|
|
|
|
- [grouping_subshell](../syntax/ccmd/grouping_subshell.md)
|