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