Advertisement
ENCIOK

wraca do menu

Mar 27th, 2025
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | Jokes | 0 0
  1. #!/bin/bash
  2.  
  3. while [ 1 ]; do
  4.  
  5.     clear
  6.     echo "opcje opcje"
  7.     read odp
  8.  
  9.     case $odp in
  10.         1) code
  11.         read c ;;
  12.         2) code
  13.         read c ;;
  14.         3) code
  15.         read c ;;
  16.         4) break
  17.     esac
  18.  
  19. done
  20.  
  21. exit 0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement