Thursday, July 25, 2024

Contoh Script Bash Pilihan Menu

Buat file script nya seperti contoh di bawah ini, lalu simpan misal dengan nama menu.sh 

#!/bin/bash
# Bash Menu Script Example
clear
PS3='Please enter your choice: '
options=("Cek IP" "Ganti IP" "Quit")
select opt in "${options[@]}"
do
    case $opt in
        "Cek IP")
            ./cekip.sh
            ;;
        "Ganti IP")
            ./gantiip.sh
            ;;
        "Quit")
            break
            ;;
        *) echo "invalid option $REPLY";;
    esac
done

Hasil nya akan seperti di bawah ini


Share

0 comments:

Post a Comment

 

2011 IisBetoQ™ is a registered trademark.

Designed by Templateism | Templatelib. Hosted on Blogger Platform.