Re: Crontab Entries

2002-03-28 Thread Javier Gostling
A better one would be: $ cd /var/spool/cron $ for i in *; do echo $i; cat $i; echo '='; done This would give you a complete list of crontab contents, tag who owns each entry and show where each crontab file ends. Cheers, -- Javier Gostling Ingeniero de Sistemas Virtualia S.A. [EMAIL PROTEC

SOLVED: Re: Crontab Entries

2002-03-28 Thread Jake McHenry
Thanks everyone, that makes things a lot easier for me. :-) At 08:33 AM 3/28/2002 -0500, you wrote: >Does anyone know of a way that I can view the crontab entries for all >users on the system, instead of doing crontab -u user -l for each user? > >T

Re: Crontab Entries

2002-03-28 Thread Rénald CASAGRAUDE
On jeudi, mars 28, 2002, at 02:33 , Jake McHenry wrote: > Does anyone know of a way that I can view the crontab entries > for all users on the system, instead of doing > crontab -u user -l for each user? Hi ! Try this as root : #!/bin/sh cat /etc/passwd | cut -d':' -f1 |

Re: Crontab Entries

2002-03-28 Thread Ed . Greshko
On Thu, 28 Mar 2002, Jake McHenry wrote: > Does anyone know of a way that I can view the crontab entries for all users > on the system, instead of doing crontab -u user -l for each user? su cd /var/spool/cron cat * Ed ___ Redhat-list m

Re: Crontab Entries

2002-03-28 Thread Robert Dege
an view the crontab entries for all users > on the system, instead of doing crontab -u user -l for each user? > > Thanks, > Jake > > > > ___ > Redhat-list mailing list > [EMAIL PROTECTED] > https://listman

Crontab Entries

2002-03-28 Thread Jake McHenry
Does anyone know of a way that I can view the crontab entries for all users on the system, instead of doing crontab -u user -l for each user? Thanks, Jake ___ Redhat-list mailing list [EMAIL PROTECTED] https://listman.redhat.com/mailman/listinfo