8 lines
97 B
Bash
8 lines
97 B
Bash
#!/bin/bash
|
|
|
|
function g_enterend {
|
|
g_echo "Enter/Return zum Beenden drücken"
|
|
read x
|
|
exit 0
|
|
}
|