background job


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers background job
# 1  
Old 08-26-2003
Data background job

I try to run a script as background job.

script:
#!/usr/bin/csh
/usr/bin/date +20%y-%m-%d > ~/datsql.txt

If I start it I got this output:
tac> ./datermitteln&
[5] 293
[5] + Stopped (SIGTTOU) ./datermitteln&

I insert the following line inside my script, but without any advancement.
stty -tostop

Please help!
regards joerg
# 2  
Old 09-05-2003
It looks to me that your script only executes one "date" command and stops then....

What exactly are you trying to do with it?

With only one line it will execute immediately and then be finished...

If you want it to run indefinitely do this.

# vi datermitteln
while true
do
/usr/bin/date +20%y-%m-%d
done



However, that is a very strange command... If you are trying to capture this for another script, just assign it to a variable...


# DATE=`/usr/bin/date +20%y-%m-%d` # backtics btw...
# echo $DATE
2003-09-05
# 3  
Old 09-05-2003
Kelam,

Joerg's issue seems to be with the job stopping - I had to set in the script to turn tostop on (stty tostop ) to get the script to have the same issue as Joerg. Unfortunately, I haven't had time to get back to it.

Joerg, I tried this on Solaris and HP-UX and could not make the job stop unless I set tostop (instead of turning it off like you were trying). What OS are you using?
# 4  
Old 09-05-2003
RTM, that was my point ... the script WILL stop b/c it only runs one command.

Maybe I am misunderstanding his problem... Does he want it to keep running or to stop running?

I cant find a use for this script myself... why not make it a variable in a script?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Background job not working as expected

Hello Unix Buddies, cat infinite.sh #!/bin/sh while true do echo "Infinite loop" doneI am running it in the background $ ./infinite.sh > /dev/null & 31634Then i do an exit or click on the cross mark to close the session. Now my expectation is that when i open up a new... (8 Replies)
Discussion started by: shellscripting
8 Replies

2. Shell Programming and Scripting

Background job issue

How to bring a backgroud job say sample_script.sh to foreground (4 Replies)
Discussion started by: rafa_fed2
4 Replies

3. Shell Programming and Scripting

Background Job

Hello Everyody, Having a doubt. sort file1 & when we sent a job to the background it returns Job Number PID again if we want to ... (1 Reply)
Discussion started by: knroy10
1 Replies

4. UNIX for Advanced & Expert Users

Background job when completed

Hello - I submitted one background job last night and it completed today morning.I want to know exact time the job completed. I submitted backgroung job like this nohup cp -Rp /opt/apps/prod/proddb/proddata . & I want to know when above job completed on UNIX server.Above command... (9 Replies)
Discussion started by: Mansoor8810
9 Replies

5. AIX

Question on background running job

Guys, We use AIX 5.3 at our work place. I only in my team have a strange problem of not able run jobs background. Other colleagues are able to run without any problem. Once I kick off background job using nohup and & command, It immediately stops. The following error I get when I run. ... (2 Replies)
Discussion started by: anandsbr
2 Replies

6. Shell Programming and Scripting

Cannot submit a background job

Hi all, I am currently facing a problem when i am submitting a script to run in the background to collect statistics round the clock on an AIX box. I don't have root authority nor can I set it in cron. So when i submit the job, it runs fine, but won't let me signoff. It prompts me that... (2 Replies)
Discussion started by: tansha
2 Replies

7. Shell Programming and Scripting

how to get background job to foreground

hi, i am just wondering that wen we give the following code we make a process run in background...can the viceversa be performed?i.e can this be made foreground again # sleep 75& 21751 # (4 Replies)
Discussion started by: sandilya
4 Replies

8. UNIX for Dummies Questions & Answers

background job

on gnome i open a terminal and run wget http://soommmething & in the background. because wget shows me downloading progress percentage and download speed continuously, I exit the gnome-terminal after a while i want to see the download percentage but dont know how. my ps -u myname shows that... (3 Replies)
Discussion started by: babayeve
3 Replies

9. UNIX for Dummies Questions & Answers

Background job

Hiya, Recently I've run a few scripts in the foreground, but have realised later they should of been better nohup'd and placed in the background. I understand how to change a foreground job into a background one, but how would put the job into the nohup state? Thanks (1 Reply)
Discussion started by: rdbooth
1 Replies
Login or Register to Ask a Question