This commit is contained in:
2025-11-23 14:10:28 +01:00
parent 0939c771f3
commit e265d95dd9
510 changed files with 251 additions and 0 deletions

11
piping/ask Executable file
View File

@@ -0,0 +1,11 @@
read -n1 -p "Weitermachen? (j/n)" auswahl
echo "auswahl = ${auswahl}"
if [ "${auswahl}" == 'j' ];then
echo "Es geht weiter"
else
echo "Dann eben nicht"
fi