1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-09-25 05:51:31 +02:00

Merge pull request #3764 from louis77/patch-1

[bash/de] Fix missing double quotes
This commit is contained in:
Andre Polykanine
2019-11-11 00:05:48 +02:00
committed by GitHub

View File

@@ -217,7 +217,7 @@ done
function foo ()
{
echo "Argumente funktionieren wie bei skripts: $@"
echo Und: $1 $2..."
echo "Und: $1 $2..."
echo "Dies ist eine Funktion"
return 0
}