Script to run non-stop


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Script to run non-stop
# 29  
Old 01-21-2008
Quote:
Originally Posted by porter
You'll need to look up job control for your shell....

eg Job Control
Hi ,

I don;t quite understand this link. Too deep for beginners like me.
Can somebody explain why or give me some guidance on why this will happen when i apply " nohup mycshscript & " ?
Appeciate your help.

Code:
$ jobs -l
[3]  + 28124 Stopped (tty output) mycshscript
$

# 30  
Old 01-21-2008
# 31  
Old 01-21-2008
Hi ,

I am using csh.
I tried using the below command as well.
What does this statement " sending output to nohup.out" means ? Does it mean my script can run with me exiting the command prompt window already ?
However, when i type " jobs -l ", no jobs seems to be running . Can some experts help ?

Code:
$ /bin/nohup mycshscript &
[7] 19804
$ Sending output to nohup.out

Code:
$ jobs -l 
$


Last edited by Raynon; 01-21-2008 at 02:24 AM..
# 32  
Old 01-21-2008
Background process attempts I/O, hence the reason.

Better make your process read input from a file rather than a terminal

that should solve the problem
# 33  
Old 01-21-2008
Quote:
Originally Posted by matrixmadhan
Background process attempts I/O, hence the reason.

Better make your process read input from a file rather than a terminal

that should solve the problem
Hi matrixmadhan,

Don't really understand how you define reading input from a file rather than a terminal. Can you give me some process examples where process is reading from a file and process is reading from a terminal ?
# 34  
Old 01-21-2008
how to read input from a file ?
Code:
cat t
example

read var < t

Code:
echo $var
example

reading input from a terminal
Code:
read var

reading input from a terminal as a background process
Code:
read var &

# 35  
Old 01-21-2008
Quote:
Originally Posted by Raynon
Hi ,

I am using csh.
I tried using the below command as well.
What does this statement " sending output to nohup.out" means ? Does it mean my script can run with me exiting the command prompt window already ?
However, when i type " jobs -l ", no jobs seems to be running . Can some experts help ?

Code:
$ /bin/nohup mycshscript &
[7] 19804
$ Sending output to nohup.out

Code:
$ jobs -l 
$

Hi matrixmadhan,

Can you enlightened me on the above?
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 run in a case statement call to run a php file, also Perl

Linux System having all Perl, Python, PHP (and Ruby) installed From a Shell script, can call a Perl, Python, PHP (or Ruby ?) file eg eg a Shell script run in a case statement call to run a php file, also Perl or/and Python file??? Like #!/usr/bin/bash .... .... case $INPUT_STRING... (1 Reply)
Discussion started by: hoyanet
1 Replies

2. Shell Programming and Scripting

How to run a process continuously for an hour then stop?

Hi I have a shell script I would like to run it has to run twice a day every 5 seconds for an hour I can do this with cron but I was hoping there was an easier way. Is there a way to make a process sleep only at a certain time of day say between 1 and 2 pm? Or under certain conditions? Any help... (8 Replies)
Discussion started by: Paul Walker
8 Replies

3. Shell Programming and Scripting

Script fails to run properly when run from CRONTAB

Hello all, I'm trying to write a script to gather and send data and it works just fine at the bash command line, but when executing from CRON, it does not run properly. My scripting skills are pretty limited and there's probably a better way, but as I said it works at the command line, but... (12 Replies)
Discussion started by: rusman
12 Replies

4. Shell Programming and Scripting

how to run an already made script run against a list of ip addresses solaris 8 question

how to run an already developed script run against a list of ip addresses solaris 8 question. the script goes away and check traffic information, for example check_GE-VLANStats-P3 1.1.1.1 and returns the results ok. how do I run this against an ip list? i.e a list of 30 ip addresses (26 Replies)
Discussion started by: llcooljatt
26 Replies

5. Shell Programming and Scripting

Stop child script by stoping parent script

Hi everyone, I have this problem with a script I'm writting. I want to execute a code running in the background several times through a script. I am writting it like that parent_script for a in 1 2 3 4 5 do exec test -n $a done What I want to do is when parent_script is killed,... (0 Replies)
Discussion started by: geovas
0 Replies

6. UNIX for Advanced & Expert Users

rc.d script to stop not workign

I have a simple script that I have put in all the rc.d directories from 1-6 and have named it K20blah and S20blah .I am on red hat linux and I see that when i do reboot the S20blah is ignored but the K20blah is executed during startup . Any suggestions? #! /bin/sh # /etc/init.d/blah # #... (3 Replies)
Discussion started by: gubbu
3 Replies

7. AIX

My script didn't run every run every minute at cronjob

In my cronjob, I would like to schedule my script.sh to run every minutes. I crontab -e and have in line below but it didn't seems to run at all. * * * * * script.sh When I run it manually, I can run it. Is that anything wrong with the above line? If I change it to something like below,... (4 Replies)
Discussion started by: ngaisteve1
4 Replies

8. Shell Programming and Scripting

How to stop a script running in remote server from local script

Hi, I have googled for quite some time and couldn't able to get what exactly I am looking for.. My query is "how to stop a shell script which is running inside a remote server, using a script"??? can any one give some suggestions to sort this out. (1 Reply)
Discussion started by: mannepalli
1 Replies

9. UNIX for Advanced & Expert Users

script to run different shells which run different processes

Hi, Would like to ask the experts if anyone knows how to run a script like this: dtterm -title shell1 run process1 on shell1 dtterm -title shell2 run process2 on shell2 cheers! p/s: sorry if i used the wrong forum, quite concussed after watching world cup for several nights; but I... (2 Replies)
Discussion started by: mochi
2 Replies
Login or Register to Ask a Question