Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- echo "Wake-on-lan opciók:"
- PS3='Ébresztendő gép sorszáma:'
- options=("PC1" "PC2" "PC3" "Manuális megadás" "Kilépés")
- select opt in "${options[@]}"
- do
- case $opt in
- "PC1")
- etherwake -D -i wlp3s0 00:30:D5:CD:6F:59
- ;;
- "PC2")
- etherwake -D -i wlp3s0 D4:3D:DE:C0:13:24
- ;;
- "PC3")
- etherwake -D -i wlp3s0 98:DE:D0:D2:69:F4
- ;;
- "Manuális megadás")
- read -p "Add meg a MAC címet a következő alakban: xx:yy:zz:11:22:33 -> " arg1
- etherwake -D -i wlp3s0 $arg1
- ;;
- "Kilépés")
- break
- ;;
- *) echo invalid option;;
- esac
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement