Script linux
if [ $ocpao -eq 1 ]; then clear echo "CONTROLE DE GRUPO - Escolha uma das opções abaixo!!!" echo "1) Exibir todos os grupos já existentes" echo "2) Criar novo grupo" echo "3) Deletar grupo" echo "4) Voltar ao MENU PRINCIPAL" echo "5) Encerrar o programa" echo -n "Selecione uma das opções acima entre 1 e5" read opcao
if [ $opcao -ne 1 ]; then clear
if [ $opcao -ne 2 ]; then clear
if [ $opcao -ne 3 ]; then clear if [ $opcao -ne 4 ]; then clear if [ $opcao -ne 5 ]; then clear echo "VALORES DIGITADOS INCORRETAMENTE, DIGITE VALORES ENTRE 1 e 5" bash horas
fi fi fi fi
fi if [ $opcao -eq 1 ]; then clear cat /etc/group elif [ $opcao -eq 2 ]; then clear echo "Informe o nome de grupo a ser criado" read nomegrupo groupadd $nomegrupo echo "O grupo $nomegrupo, foi criado com sucesso!!!" elif [ $opcao -eq 3 ]; then clear echo "Informe o nome do grupo a ser deletado" read nomegrupo groupdel $nomegrupo