![]() |
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 |
| Crontab question | blondie2407 | HP-UX | 12 | 09-16-2009 01:53 PM |
| CRONTAB Question | pauls_579 | UNIX for Dummies Questions & Answers | 2 | 01-23-2007 05:46 PM |
| Crontab question | ctcuser | Shell Programming and Scripting | 3 | 10-19-2006 09:22 AM |
| crontab question | steelrose | UNIX for Dummies Questions & Answers | 5 | 10-05-2005 12:07 AM |
| crontab question | Relykk | UNIX for Dummies Questions & Answers | 7 | 03-28-2004 08:02 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Crontab Question.
I set up a job to run a script in a certain directory to remove certain files. The script seems to run as my logs indicate but nothing happens. If I run the script manually then it removes the correct files. I'm now wondering if crontab doesnt have access to remove files from the directory I'm pointing to? Any advise would be greatly appreciated.
|
|
||||
|
99% of problems with crontab are that is executes with a minimal environment and does not execute your .login, .profile or whatever.
Put in a wrapper script that captures the stdout and stderr, and use "#!/bin/sh -x" as the first line in your script to debug it. |
|
||||
|
Quote:
Code:
find . \( -size 100c -o -size 145c -o -size 170c \) -a -name "*testing*" | xargs -n 1 rm |
|
||||
|
Quote:
So there should be a "#!/bin/sh" at the start, and also, change the current directory to what you want to start with. |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|