How to write a daemon in Unix?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to write a daemon in Unix?
# 8  
Old 04-18-2008
I took out the break line. that would end the script after the 1st time file is found. Sounds like you want a cron that will look for incoming files on a regular basis? sleep 600 is 10 minutes. Of course you'lll need to move the file once found, or the next interation is going to find the old file.

Code:
#!/usr/bin/ksh

while true; do
  if [[ -s file001.txt ]]; then
    # Found the file do stuff here
    print "found file!"
   else 
        print "File not found!"
  fi
sleep 600
done

# 9  
Old 04-19-2008
partially works!! Thanks

Good evening Denn Thanks a lot for your input!
I tried that but it gives following message
""Can't find file File not found!
Can't find file found file!"""" it says found file once thats pasted into the folder i am checking for.Also it goes in the loop with out breaking i want to break the loop once file is found.
kindly let me know where this is going wrong!
Thanks again....
Thanks & regards
KPIT
# 10  
Old 04-19-2008
If you're not using ksh, the print command is something else entirely -- a command which expects a file argument, and complains "Can't find file <argument>" when the "file" you give it doesn't exist. Try replace print with echo or printf instead.

Scroll back and reread some earlier posts; denn took out the break but it's easy to put back in -- just scroll further back to find a version which has it.
# 11  
Old 04-21-2008
thanks all!!

Hi Era,Denn,matrix & all others

Thanks this works probably i didnt realise ksh & sh...
now it gives me the desired results..thanks a lot for your support

I inserted the break & loop i wanted for specific time

Thanks Again.....
Regards
KPIT
# 12  
Old 04-23-2008
how to us ethe said code with sftp

Hi all,

I got the previus code working thanks for that i also have an sftp script working,now my reqmnt is once i login to the sftp server i want to check the arrival of file & do some stuff how do i achieve that..the code with this does not work with sftp pls help
Thanks in Advance
KPIT
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to write a daemon script?

My requirement is to run two scripts simultaneously. Let say, script1.ksh is running in a loop : example: script1.ksh is: for i in 1 2 3 do script2.ksh 1 & #psedu code which is required to write here # if script 2.ksh is running, execute a script3.ksh (which actually check the... (2 Replies)
Discussion started by: sumitc
2 Replies

2. Shell Programming and Scripting

Setting up a Daemon in UNIX

I have scheduled a crontab job in AIX 6.1 OS to run twice in an hour which runs for the whole day to process a load. The load which crontab kicks off needs files to arrive at a particular directory and if the files arrive, I process them. It so happens that for the 24 times the crontab... (2 Replies)
Discussion started by: gaugeta
2 Replies

3. Shell Programming and Scripting

Need to write a script to reformat a file in unix but not familiar with unix

unix script must do the fiollowing open a file containing comma delimited records > each record contains 10 fields > removes the 2nd field and use that same field containing fields 2 to 10 the original record after fprocessing should containing fields 1 and 3 a new erecord must be... (10 Replies)
Discussion started by: dwightja
10 Replies

4. Shell Programming and Scripting

How to write daemon in UNIX

Hi Guys, I hope this is the right forum to post this. I have a directory where files will be dumped at any time of the day and I want to run scripts as soon as new files come into the directory. How can I write a daemon that detects when new files have been uploaded to the directory? ... (1 Reply)
Discussion started by: regie101
1 Replies

5. UNIX for Dummies Questions & Answers

How to write Pro*C daemon process using multithreading?

Hello, I am new to this forum and this is my first post here... I have never worked on either Pro*C or Multithreading..Now, i have to write a Pro*C, Multithreading daemon process.. I dont know where to start.. Can anybody help me with examples? 1. need to write a Pro*C multithreading... (0 Replies)
Discussion started by: kachiraju
0 Replies

6. Shell Programming and Scripting

créating a daemon under unix

hi i want to create a daemon under unix or linux but i don't really know how so i will be grateful if you provide me links with examples or /andx how to do it thanks (2 Replies)
Discussion started by: student00
2 Replies

7. UNIX for Dummies Questions & Answers

I would like to know Would you run the ‘identd’ daemon on UNIX servers?

Would you run the ‘identd' daemon on UNIX servers? can you please Explain. thanks in advance! (3 Replies)
Discussion started by: xoxouu
3 Replies

8. Programming

How to write daemon?

Hi , I want to know how to write a daemon process. I also want to know the concept behind daemon processes. Any material or sample program will be great :) . Thanks in advance -sg (2 Replies)
Discussion started by: sg6876
2 Replies

9. UNIX for Dummies Questions & Answers

Should a UNIX daemon process close open fds?

I have a UNIX daemon process that's been started by a parent process, an application server. The behavior of this daemon process is to inherit and use the app server's file descriptors (ports/sockets). When I shutdown the app server, the daemon continues to run, because there may be other... (1 Reply)
Discussion started by: kunalashar
1 Replies
Login or Register to Ask a Question