![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Checking for a file in file pattern before deleting it | dsrookie | UNIX for Dummies Questions & Answers | 1 | 05-09-2008 04:29 PM |
| Deleting lines inside a file without opening the file | toms | Shell Programming and Scripting | 3 | 09-24-2007 07:58 AM |
| Remove the contents of a file without deleting the file | sumesh.abraham | Shell Programming and Scripting | 10 | 12-02-2006 05:35 PM |
| Zero bye file not deleting | arunkumar_mca | High Level Programming | 2 | 11-14-2006 06:39 AM |
| CRON-Job / Shell-Skript deleting special files | ManfredWL | Shell Programming and Scripting | 9 | 07-17-2003 03:18 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
cron not deleting file
Hi,
I have put a shell in cron. The shell has a line at the bottom to remove a file which i use while processing. When i run the shell it removes the file, but when i put in cron it remains , the temp file?? Appreciate help Regards |
|
||||
|
Without seeing the script it is rather difficult to debug, however I have found many scripts and commands do not work under cron because you're not in the directory you expect.
When you run the script from the command-line you are using the current working directory. When you run the same script from cron, you're executing it from the home directory of the account that is executing it. So, it is very important to either explicitly change directory into a given run directory or use absolute pathnames for temporary files and such. If this does not apply to your situation, a copy of the script would be helpful. |
| Sponsored Links | ||
|
|