#!/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
0 comments:
Post a Comment