Bash Menu Options Selections Linux Example
Page 1 of 1
Bash Menu Options Selections Linux Example
- Code:
#!/bin/bash
select fname in *;
do
echo you picked $fname \($REPLY\)
break;
done
Re: Bash Menu Options Selections Linux Example
Example 2
jnet.forumotion.com/t1530-linux-mint-18-2-firewall-shell-commands-scripts#2288
jnet.forumotion.com/t1530-linux-mint-18-2-firewall-shell-commands-scripts#2288
Re: Bash Menu Options Selections Linux Example
So to do a mass scan and have this menu help out example see below:
- Code:
#!/bin/bash
# (c) J~Net 2018
# jnet.forumotion.com/t1366-bash-menu-options-selections-linux-example?highlight=bash+menu
#
# jnet.forumn.biz/t1506-linux-bash-mass-scanning-the-whole-internet-web-cams#2223
#
# ./menus.sh
#
select fname in *;
do
echo you picked $fname \($REPLY\)
bash $fname \($REPLY\)
break;
done
Similar topics
» Message Netcat Bash Part 3 Auto Grabbing & Menu
» Linux Xmessege Bash Example
» Bash Psychic Game For Linux Bash
» Linux BASH Script Running Commands and Functions From Bash Script and saving to varables
» Linux Bash Asci Art
» Linux Xmessege Bash Example
» Bash Psychic Game For Linux Bash
» Linux BASH Script Running Commands and Functions From Bash Script and saving to varables
» Linux Bash Asci Art
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum