6 lines
57 B
Bash
6 lines
57 B
Bash
# unset.sh
|
|
text="Inhalt"
|
|
|
|
echo "text=${text}"
|
|
unset text
|