Advertisement
Guest User

Ejemplo

a guest
Apr 4th, 2020
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. case $1 in
  2.    "-h") echo "Isto seria uma ajuda... Mas fiquei com preguiça de escrevê-la."
  3.          ;;
  4.    "-v") echo "Versão 666."
  5.          ;;
  6.    *) echo "Opção inválida!"
  7.       exit 1
  8.       ;;
  9. esac
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement