Execution Problem with dispalying file content using menu driven script


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Execution Problem with dispalying file content using menu driven script
# 1  
Old 10-12-2012
Execution Problem with dispalying file content using menu driven script

HI All..

below is my menu options script. in option 2,3 and 4 im giving input and they are saving into their respective text file.

problem is when im trying to "cat" those files in options 7,8 and 9 im not getting the output. no respective file contents are displaying on screen. but if i run option 7, 8 and 9 code in seperate scripts, im getting perfect output. but when i integrate them in menu choose script, they are not displaying.

can any one guide me and fix this issue....




Code:
#!/bin/bash
#Script to create menus and take action according to that selected menu item.
while :
  do
  clear
  echo "---------------------------------------------------------------------------"
  echo "            * * * * * * * * * *  Main Menu * * * * * * * * * * "
  echo "---------------------------------------------------------------------------"
  echo "[1] Set Udername and password for devices in format username:pasword"
  echo "[2] Set Destination path to where Device Backups should SAVE"
  echo "[3] Set eMail ID to whom alerts should send"
  echo "[4] Add new device to devices list "
  echo "[5] View Current Script runing directory"
  echo "[6] open VI TEXT Editor"
  echo "[7] View Current Device list"
  echo "[8] View Current Destination Path"
  echo "[9] View Current mail ID set for Alerts"
  echo "[0] Exit/stop"
  echo "---------------------------------------------------------------------------"
  echo -n "Enter your menu choice [1-9]:"
  read yourch

#-------------------Start Functions--------------------------------------
  case $yourch in
    1) read -p "Enter user credentials in format username:password
> " myname
       echo "$myname" > /root/script/credentials.txt ;;
    2) read -p "Enter Destination path
> " destpath
       echo "$destpath" > /root/script/dest_path.txt ;;
    3) read -p "Enter E-Mail ID
> " mailid
       echo "$mailid" > /root/script/mail_alert.txt ;;
    4) read -p "Enter new device details in format device:ipadd
> " dev
       echo "$dev" >> /root/script/device_info.txt ;;
    5) echo "Script Files are executing from below path"; pwd ; echo "Press a key. . ." ; read -n 1 ;;
    6) vi ;;
    7) FILE="/root/script/device_info.txt"
       echo "*** File - $FILE contents ***"
        cat $FILE ;;
    8) FILE="/root/script/dest_path.txt"
       echo "*** File - $FILE contents ***"
        cat $FILE ;;
    9) FILE="/root/script/mail_alert.txt"
       echo "*** File - $FILE contents ***"
        cat $FILE ;;
    0) exit 0
        ;;
       *) echo "Opps!!! Please select choice 1-9 or 8"
       echo "Press a key. . ."
       read -n 1
       ;;
  esac
done

# 2  
Old 10-12-2012
Run the commands:
Code:
id
ls -ld /root /root/script /root/script/device_info.txt /root/script/dest_path.txt /root/script/mail_alert.txt

and show us the results (both from stdout and from stderr). I'm guessing that:
  1. one or more of the files don't exist,
  2. you don't have read permission for one or more of these files, or
  3. you don't have search permission on the directories.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Using menu driven script

Hi Team , I wrote a shell script for adding and subtracting two numbers am getting error could some one please help to fix it script: echo "Enter 1 to add:" echo "Enter 2 to sub:" echo "Enter 3 for both addition and subtraction :" read ans; case "$ans" in 1)... (4 Replies)
Discussion started by: knz
4 Replies

2. Shell Programming and Scripting

Menu Driven Bash Shell Script with Default Option

Hi All, I have written a menu driven bash shell script. Current Output is as below: ------------------------------------- Main Menu ------------------------------------- Option 1 Option 2 Option 3 Option 4 Exit ===================================== Enter your... (3 Replies)
Discussion started by: kiran_j
3 Replies

3. Shell Programming and Scripting

Use of stty vs trap in script-driven login menu

My employers would like me to selectively run one of several different (already-existing) Korn Shell menu-driven scripts out of the user's .profile file, depending on some yet-to-be-specified user critieria. I've never done this kind of thing, but I have the existing scripts (among other... (5 Replies)
Discussion started by: Clovis_Sangrail
5 Replies

4. Shell Programming and Scripting

Menu driven script.

I'm a beginner at scripting and have been putting this script together over the past week. It's no where as polish as it could be. Any tips/suggestions on improving this script would be appreciate it. Every week, my team develops WAR files in tomcat on our test environment and moves them to our... (4 Replies)
Discussion started by: bouncer
4 Replies

5. Shell Programming and Scripting

Help needed in writing a menu driven script

Hi, I was wondering if someone could help me write a shell script in Linux that backsup/restores data to anywhere I choose but it needs to be menu driven? Thanks, I'm new to Linux/Unix but liking it so far...just hoping to get to grips with the scripts! :) (7 Replies)
Discussion started by: Nicole
7 Replies

6. UNIX for Dummies Questions & Answers

What is a menu or command line option driven script?

i'm confused what this means. i was asked to design a menu or command line option driven script that reads out of a DB and displays info such as read_data.pl -u <user> -e <event> which would print commands run by <user>with the <event> in the db. any suggestions? i've been using... (2 Replies)
Discussion started by: kpddong
2 Replies

7. SuSE

Write shell script using menu-driven approach to show various system

QUESTION: Write shell script using menu-driven approach to show various system configuration like 1) Currently logged user and his logname 2) Your current shell 3) Your home directory 4) Your current path setting 5) Your current working directory 6) Show Currently logged number of... (1 Reply)
Discussion started by: bboyjervis
1 Replies

8. Shell Programming and Scripting

Menu driven Script needed ..pls help

Hi Guys.. am new to unix scrpiting..I need a Menu need to create using shell scrpting eg: Food items ready paid if i press "f" need to add items for a file food items.. if i press "r" it need to move into ready and remove from food items if i press "p" need to update a filed in... (1 Reply)
Discussion started by: sasdua
1 Replies

9. Shell Programming and Scripting

Assigning values to reference variables for a dynamic menu driven script.

How do I assign values to reference variables? I am assigning a variable name to --> $user_var Then I am trying to change its underlying variable value by $((user_var))=$user_value .. its failing,, Please let me know if there is a way to do this dynamically.. FileA.props... (5 Replies)
Discussion started by: kchinnam
5 Replies

10. Homework & Coursework Questions

Menu Driven Shell Script which accepts1 to 5 options

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: 1) Write a Menu Driven Shell Script which accepts1 to 5 options and performs the following actions for... (1 Reply)
Discussion started by: vaghya
1 Replies
Login or Register to Ask a Question