[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Cron Problem:
- Subject: Re: [cobalt-users] Cron Problem:
- From: Randy Herban <rherban@xxxxxxxxxxx>
- Date: Wed Apr 25 06:04:45 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
On Wed, 25 Apr 2001, Brian Coughter wrote:
> Here's my cron entry:
>
>
> */5 * * * * root /home/sites/site4/users chmod -R 777
>
> I get an email that states:
> /bin/sh: /home/sites/site4/users: is a directory
>
> Can I not perform this command on a directory? If not, how come?
>
should read:
*/5 * * * * root chmod -R 777 /home/sites/site4/users
needs the command first, then the directory.
-Randy