Skip to content

Commit 3cf2403

Browse files
New translations bash_stub.md (German)
1 parent d2df56d commit 3cf2403

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/gemstones/bash_stub.de.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,18 @@ dann
4646
fi
4747
4848
# Prüfen Sie den fehlenden Parameter.
49-
# Nutzungsnachricht anzeigen und beenden, wenn sie fehlt:
49+
# Display usage message and exit if it is missing:
5050
5151
if [ "$1" = "" ]
5252
then
53-
echo "$PGM : Parameter 1 is required"
53+
echo "$PGM : parameter 1 is required"
5454
echo "Usage: $PGM param-one"
5555
exit
5656
fi
5757
58-
# Datenaufforderung (in diesem Fall eine Ja/Neinantwort, die standardmäßig auf "N"):
58+
# Prompt for data (in this case a yes/no response that defaults to "N"):
5959
60-
/bin/echo -n "Möchten Sie fortfahren? [y/N] "
60+
/bin/echo -n "Do you wish to continue? [y/N] "
6161
read yn
6262
if [ "$yn" != "y" ] && [ "$yn" != "Y" ]
6363
then
@@ -66,7 +66,7 @@ then
6666
fi
6767
6868
# If only one copy of your script can run at a time, use this block of code.
69-
# Check for lock file. Wenn es nicht existiert, erstellen Sie es.
69+
# Check for lock file. If it doesn't exist create it.
7070
# If it does exist, display error message and exit:
7171
7272
LOCKF="/tmp/${PGM}.lock"

0 commit comments

Comments
 (0)