well basically I am trying to produce a menu with 3 options, 1 displaying usernames of people on the system another option to display bash history and a third to display a message confirming that there is a Firefox Internet history log present on the system for a given User. So far I have
cat>menu
PS3= "Enter command: "
select cmd in who history
do
$cmd
done
this will display the users and the history of the user just not sure how to get the internet history part in the third line everything else works fine
help would be much appreciated!