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
commit d374735894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
}