Bash Shell Script com Menu

2

Eu escrevi um script de shell bash (código fornecido abaixo) que dá ao usuário 4 opções. No entanto, estou tendo um pequeno problema com o código. Agora, quando eles selecionam a opção 3, para mostrar a data. Ele faz um loop repetidamente. Eu tenho que fechar a janela do terminal para pará-lo porque é um loop infinito. Como eu evitaria isso? Também pare não parece estar funcionando também.

Se alguém puder me ajudar um pouco, obrigado.

#!/bin/bashe
 echo -n "Name please? "
 read name
 echo "Menu for $name
    1. Display a long listing of the current directory
    2. Display who is logged on the system
    3. Display the current date and time
    4. Quit "
read input
input1="1"
input2="2"
input3=$(date)
input4=$(exit)
while [ "$input" = "3" ]
do
echo "Current date and time: $input3"
done

while [ "$input" = "4" ]
do
echo "Goodbye $input4"
done
    
por rjdelight 12.04.2011 / 23:21

3 respostas

8

Uma versão compacta:

options=(
    "Display a long listing of the current directory"
    "Display who is logged on the system"
    "Display the current date and time"
    "Quit" 
)

select option in "${options[@]}"; do
    case "$REPLY" in 
        1) ls -l ;;
        2) who ;;
        3) date ;;
        4) break ;;
    esac
done
    
por 13.04.2011 / 02:21
3

Acho que é devido ao while loop;)

O valor de $input não é alterado dentro do loop. Você insere algo como read input no loop ou altera o while ... do em if ... then . Se eu entendi a intenção do seu script corretamente, você não precisa desses while loops onde eles estão agora. Você precisa de um loop grande while cobrindo tudo, desde echo "Menu for $name até o final.

Minha versão do script seria:

#!/bin/bash
echo -n "Name please? "
read name
input=""
while [ "$input" != "4" ]; do
  echo "Menu for $name
    1. Display a long listing of the current directory
    2. Display who is logged on the system
    3. Display the current date and time
    4. Quit "
  read input
  input1="1"
  input2="2"
  input3=$(date)
  input4=$(exit)
  if [ "$input" = "3" ]; then
    echo "Current date and time: $input3"
  fi

  if [ "$input" = "4" ]; then
    echo "Goodbye $input4"
  fi
done
    
por 12.04.2011 / 23:30
0

o caso está aqui para ajudá-lo, tente

 # cat list.sh
 #!/bin/bash
 echo -n "Name please? "
 read name
 echo "Menu for $name"
 echo -e "Enter ( 1 ) to Display a long listing of the current directory \nEnter ( 2 )             to Display who is logged on the system\nEnter ( 3 ) to Display the current date and     time\nEnter ( 4 ) to Quit"
 read en
 case "$en" in
 1)ls -lR;;
 2)who;;
 3)date;;
 4)echo "Good Bye..."
 sleep 0;;
 *)echo "Wrong Option selected" ;;
 esac

Saída:

 # ./list.sh
 Name please? Ranjith
 Menu for Ranjith
 Enter ( 1 ) to Display a long listing of the current directory
 Enter ( 2 ) to Display who is logged on the system
 Enter ( 3 ) to Display the current date and time
 Enter ( 4 ) to Quit

Se você inserir outras opções, o menu mostrará

 # ./list.sh
 Name please? Ranjith
 Menu for Ranjith
 Enter ( 1 ) to Display a long listing of the current directory
 Enter ( 2 ) to Display who is logged on the system
 Enter ( 3 ) to Display the current date and time
 Enter ( 4 ) to Quit
 5
 Wrong Option selected

...

    
por 05.11.2013 / 01:37

Tags