-1
I have a problem in Shell Script, where:
- You need to report a file;
- Check if it’s a file .C, .JAVA or neither of;
- If you are either, compile as chosen and run;
(I don’t know much about Shell)
#!/bin/sh
dialog --backtitle "Código FOnte" --title "Menu" --menu "Selecione " 0 0 6 \
1 "Exibir status das utilizações das partições" \
2 "Relação de usuários logados " \
3 "Informe um arquivo e receba sua informação em bytes " \
4 "Passe um programa em C ou java e execute " 2>/tmp/menuitem.$$
menuitem=`cat /tmp/menuitem.$$`
opt=$?
case $menuitem in
1) df -h > /tmp/item.1 && dialog --textbox /tmp/item.1 20 80 ;;
2) who > /tmp/item.2 && dialog --textbox /tmp/item.2 20 80 ;;
3) dialog --inputbox 'Digite caminho e o arquivo :' 0 0 2>/tmp/nome.txt
caminho=$( cat /tmp/nome.txt )
arquivo=$( ls -lh $caminho | awk '{print $9 "------------------------------------->" $5}') ;;
4) ;;
esac
What do you want? create a Shell Script file? vc has no example code?
– Julio Borges
Yes, I want to create a file in Shell Script
– Luiz Felipe