7 lines
69 B
Bash
7 lines
69 B
Bash
# concat.sh
|
|
text="Inhalt"
|
|
|
|
text="Neuer ${text}"
|
|
|
|
echo "text=${text}"
|