home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / comp / os / linux / 21842 < prev    next >
Encoding:
Internet Message Format  |  1992-12-27  |  1.2 KB

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!moe.ksu.ksu.edu!matt.ksu.ksu.edu!news
  2. From: probreak@matt.ksu.ksu.edu (James Michael Chacon)
  3. Newsgroups: comp.os.linux
  4. Subject: Re: Cron for Linux?
  5. Date: 27 Dec 1992 16:16:15 -0600
  6. Organization: Kansas State University
  7. Lines: 22
  8. Message-ID: <1hl9vfINNqm0@matt.ksu.ksu.edu>
  9. References: <1992Dec23.192311.20136@r-node.gts.org> <Bzwp3x.98t@citrus.SAC.CA.US> <1992Dec27.191705.22459@newshub.ccs.yorku.ca>
  10. NNTP-Posting-Host: matt.ksu.ksu.edu
  11.  
  12. marcf@nexus.yorku.ca (Marc G Fournier) writes:
  13.  
  14. >    Also, those of you that tried 'find / -name cron -print' to find
  15. >it...that wouldn't work, since it is named crond instead of just cron.
  16.  
  17. >Marc
  18.  
  19. That is why a lot of times people should just RTFM.
  20.  
  21. I never do finds with absolute names unless I know that is EXACTLY what
  22. I am looking for. Use wildcards, they were included for a reason.
  23.  
  24. find / -name \*cron\* -print
  25.  
  26. Works just fine here.
  27.  
  28. (Sidenote: This ranting is mainly because half the problems people have
  29. here is just general unix questions that could be better answered somewhere
  30. else. (Gee, comp.unix.questions comes to mind :-). Those man pages and README
  31. files were put there for a reason people, try using them. )
  32.  
  33. James
  34.