Nee help debugging script..plz


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Nee help debugging script..plz
# 8  
Old 11-21-2006
Quote:
Originally Posted by macosta
Huh? What shell imposes that? The following should all be equivalent in Bourne-derived shells:
Code:
 while :; do echo WTF; done

Looks like I just missed the semi-colon. I typically put the 'do' on the second line and not on the first line so when I tried the : out, it failed just as it did for him. My mistake there.

Carl
# 9  
Old 11-24-2006
If script problem ..need help to debug ..extra eyes

Carl, Can you see where I am having bug in the if statements..I have some type of syntax error and cannot see where it is..I am using bash

I want to redirect my output to standard out as well as to a file.
Thanks for your help.







Volume_Returns()
{
echo "Enter Volumes to be returned"; read input; echo $input
mminfo -q volume=$input -r volume,location,pool,volretent > $1
echo "Is this the volume you would like to return"
read response
if [ $response = y ]; then
echo " Please return the follow tapes $1" >$RETURN_REQUEST
else
echo "incorrect response"
exit
fi
}
Volume_Date_Returns()
{
echo "Return of all '"expired"' ERV tapes '(y/n)'"
if [ $response = y ]; then
mminfo -q volrent=expired -q location=ERV -r volume,volretent,pool &1>$TMP/vol.out
echo " Is this list the correct list of tapes to be returned?"
if [$response = "y" ] then
echo "List will be emailed to you"
fi
if [ $response = "n" ]; then
echo "Enter date of tapes to be returned '(mm/dd/yy or enter (T)oday, (Y)esterday, (L)ast week)'"
read dates
mminfo -q volretent='$dates'-q location=ERV -r volume, volrent,pool |more $TMP/vol.out
fi
}











[QUOTE=gzs553]Carl,

so far I've got the menu's working. Thank-you.. I am sure I will need more assistance, but will have to test each function as a piecemeal. I'm only a beginner, but I'm still learning. Thanks again..you'll her from me soon also.[/QUOT
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script debugging

hi all only the weirdest thing happened with me just now. I was debugging a shell script and I found that a step that was supposed to execute later was getting executed prior to another step for no reason. You know any ? i mean have a look at the following command- here it tries to grep... (7 Replies)
Discussion started by: leghorn
7 Replies

2. Shell Programming and Scripting

Debugging a script with noexec

Newbie question. I cannot get "set -n" or "set -noexec on" to work on Linux or AIX! According to the man page and what I read online, it should inform me of syntax errors without executing commands in your script. So, can someone PLEASE explain why this does not work? ... (2 Replies)
Discussion started by: fgoyti
2 Replies

3. Shell Programming and Scripting

debugging the shell script with out actually running

Hello, Some one asked me in the inteview.... The question is, How do we debug the schell script before even running..... Interviewer told me one clue... There is SET command to accomplish this... Can any one tell me what kind of set commands.... Thanks. (2 Replies)
Discussion started by: govindts
2 Replies

4. Shell Programming and Scripting

script debugging

is there any way you can add a breakpoint in a script so you can stop on it? i have used -xv in my shebang but the script just runs and i want it to stop at a specific point in the script. appreciate any help. (1 Reply)
Discussion started by: npatwardhan
1 Replies

5. UNIX for Advanced & Expert Users

Command nee to cut the record

I have a file which contains a record like follows /dir1/dir2/dir3/file.dat I need command to so that output can be only file.dat (6 Replies)
Discussion started by: sreenusola
6 Replies

6. UNIX for Advanced & Expert Users

cp script error, pls help in debugging!!!!

Hi all, I searched to find out a few cp scripts that had progress bar, but did not compromise on performance, when my efforts were in vain i went ahead and wrote one of my own ,taking i/p frm other scripts... But this is causing some errors and am unable to debug it.....pls help Here is the... (1 Reply)
Discussion started by: wrapster
1 Replies

7. Shell Programming and Scripting

debugging a script??

Hi all, Am working on a script to understand the flow control of it.. Since i am from a C background i looking out for an easy way to analyze the script as it runs .. In C/C++ we have F7 that starts execution from main() and proceeds accordingly.. I was wondering if there is a same approach... (2 Replies)
Discussion started by: wrapster
2 Replies

8. Shell Programming and Scripting

FTP script debugging

Hello all, I am trying to run a script and have not had much success running it...ne help debugging it will be appreciated..The ftp script alone works but not within the while loop. below is the script #!/usr/bin/ksh destination_server=servename destination_user_id=un... (1 Reply)
Discussion started by: alfredo123
1 Replies

9. Shell Programming and Scripting

HP-UX Debugging Shell script

Hi, I was using AIX - ksh shell , and inorder to debug shell script I used set -vx to echo all the commands which are being executed. Can anybody tell me the corresponding method in HP-UX - in tcsh shell. Regards Shihab (1 Reply)
Discussion started by: shihabvk
1 Replies
Login or Register to Ask a Question