Error running a script in nohup mode


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Error running a script in nohup mode
# 1  
Old 03-17-2014
Error running a script in nohup mode

Hi,
running this script in normal mode, no error occours

Code:
#!/usr/bin/ksh

VALUE=0
SUBJECT='sub'
ADDRESSES="aaa@gmail.com"
BODY='body'

while true
do

COUNT=$(tail -2500 /log/file.log | grep -i "error" | wc -l)

   if [ ${COUNT} -gt 0 ]; then

         echo "$BODY" | mailx -s "$SUBJECT" "$ADDRESSES"

   fi

sleep 30

done

instead, running the same script in nohup mode, occours the following error:
" ./script.ksh: syntax error at line 17: `COUNT=$' unexpected

Could you help me, please ?

Last edited by Corona688; 03-18-2014 at 12:44 PM..
# 2  
Old 03-17-2014
Can you set xtrace / verbose, run the script and post the output?
Code:
#!/usr/bin/ksh -xv

# 3  
Old 03-17-2014
How have you been running this script in 'nohup mode'?
# 4  
Old 03-17-2014
Hi all,
i have solved the issue.
There was a linee space before #!/usr/bin/ksh
I have removed it and now the script is working fine.

Thanks
This User Gave Thanks to nash83 For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to pass values to a script on runtime on nohup mode?

Hi All, I have a script which takes three inputs while executing, I need to run that script on nohup mode, How to do so. Kindly help me with the syntax. (1 Reply)
Discussion started by: Sikkandar
1 Replies

2. Shell Programming and Scripting

Running nohup command on remote server

I am having an issue in running a nohup command in a remote linux box from a linux box. Here are the details. Linux Machine 1: I have a script which starts a services and dumps the output into a log file. nohup sh weblogic.sh >> /home/log.out & I have placed the entire command in a... (2 Replies)
Discussion started by: accessbalaji
2 Replies

3. Shell Programming and Scripting

Keep a script on remote machine running (nohup?)

Hi, I'm using expect to ssh into remote machine (i know its not the best practice), and run script "script.sh". This "script.sh" checks whether an other process (some another script) is running and if not, it runs it as some other user. #!/bin/bash /usr/bin/expect << EOD set... (5 Replies)
Discussion started by: oseri
5 Replies

4. UNIX for Advanced & Expert Users

Running process in nohup

Hi All, I am facing issue in running a process in nohup. I ran a process in terminal since it is taking too long to complete I need to make it as background and nohup. I tried below and was able to make it in back ground 1. Cntrl + Z 2. bg I am using Korn Shell so disown is not working... (5 Replies)
Discussion started by: arunkumar_mca
5 Replies

5. Shell Programming and Scripting

How to pause process running under nohup?

Hi ALL, Is there any way to pause a running process under nohup ? I have fired a build commands with required flags under nohup as below. now how can I pause the started build process. nohup make DEVICE=ap DEBUG=1 & I understand we can use ctrl + z to pause a foreground process... (3 Replies)
Discussion started by: useless79
3 Replies

6. UNIX for Dummies Questions & Answers

How to restrict the execution of same script if it is running already in nohup?

Hi, How can i restrict the execution of same script if it is running already in nohup Thanks (1 Reply)
Discussion started by: ranabhavish
1 Replies

7. Shell Programming and Scripting

Shell running with nohup not work, but with sh command yes..

why, when i run my shell with sh command it run without problem, but when run with nohup nombreshell.sh $ command not run correctly... values ​​obtained from database are not displayed in the csv file. My shell do that: 1° data base access with sqlplus: read_sql_stmt() { typeset stmt=$1... (3 Replies)
Discussion started by: joaco
3 Replies

8. Shell Programming and Scripting

Error while running script using nohup

Hi, I am running the below script. When i run the script normally it executes fine but when i run the same script using nohup it throws an error as getStatus.sh: syntax error at line 3: `(' unexpected . Can you let me know why it is so? while do . $(dirname $0)/include.sh cd... (2 Replies)
Discussion started by: vignesh53
2 Replies

9. Programming

Is there any possibility of running the PHP script in a debug mode ?

Is there any possibility of running the PHP script in a debug mode ? If so, do i have to download any package? Any free downloads available? Can anyone please guide me through? Am a newbie in PHP scripting. Thanks in Advance! (1 Reply)
Discussion started by: vidhyaS
1 Replies

10. AIX

Query on running script with nohup

Hi, I'm trying to run database restore script with the nohup command as it will run for long hours since if I run it normally, the putty session will become inactive and the restore gets terminated. The command I use is nohup db2 -tvf FBR_NODE0000.scr -z FBR_NODE0000.log & But the problem is... (2 Replies)
Discussion started by: vkcool.17
2 Replies
Login or Register to Ask a Question