On Mon, Mar 07, 2005 at 01:17:14PM +0000, ikenna ononogbu wrote: > > I recently resumed work in a firm and the crontab jobs (using UNIX D2) > are in the user name of my predecessor. The files have now been > transferred to a general directory (everyone has access to). How do I > now transfer the crontab executable files into my own directory?
Uh, you mean the individual user's text crontab config file? To install it as your own just type "crontab that-saved-config-file" To see that its installed, "crontab -l" To change it, "crontab -e" See also crontab(1) If you mean particular executable files called by items in the crontab then I suggest using "cp -p" to copy while maintaining timestamp to where ever you desire. Then edit your crontab to ensure it points at those utilities/scripts. -- David Kelly N4HHE, [EMAIL PROTECTED] ======================================================================== Whom computers would destroy, they must first drive mad. _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"
