 |
|
 |
|
Related Topics:
| Periodic cron jobs - My jobs all mail the log file as the last step. The problem is the mail never shows the current stuff, just the previous. Is there a way to force the output to flush before sending the mail? -- Robert B. Peirce, Venetia, PA bob AT..
Is Cron still around in OSX 10.5? - I'm making a list of things I need to do before I move to 10.5 (if I do). A passing mention on the net led me to fear that cron might not exist anymore after 10.4. That seems but just in case, I'd better ask. I use cron to run things at boot..
repair disk permissions and cron - Since repairing disk seems to be a fact of life in OS X, does anyone know if cron can be set up to do this I know the command line path to launch Disk Utility, so I guess I'm wondering whether there is a separate
MAC Server - Can anyone enlighten me on how to get the MAC pc's to logon to my MAC server? I have been left in the lurch by one of our staff and could rely do with some help with this matter. I have created some user accounts on the MAC server and would like the..
ARA Server in X - Hi! Please explain me one thing. There was a very useful service in Mac OS 9 called Apple Remote Access. With its help I could share my office LAN Internet with home Mac via modem line). Is it possible to do the same thing in Mac OS..
|
|
|
Next: General Discussion: Numbers won't open large Excel files?
|
| Author |
Message |
External

Since: Jan 13, 2005 Posts: 916
|
(Msg. 16) Posted: Wed Apr 23, 2008 11:46 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: comp>sys>mac>misc (more info?)
|
|
|
In article <bob-391647.07280423042008@[199.45.49.11]>,
Robert Peirce <bob RemoveThis @peirce-family.com.invalid> wrote:
> In article <nospam.News.Bob-435213.19554022042008 RemoveThis @news.verizon.net>,
> Bob Harris <nospam.News.Bob RemoveThis @remove.Smith-Harris.us> wrote:
>
> > In article <bob-B7DD2F.09320622042008@[199.45.49.11]>,
> > Robert Peirce <bob RemoveThis @peirce-family.com.invalid> wrote:
> >
> > > In article <nospam.News.Bob-0DCC6B.20021621042008 RemoveThis @news.verizon.net>,
> > > Bob Harris <nospam.News.Bob RemoveThis @remove.Smith-Harris.us> wrote:
> > >
> > > > In article <bob-A32307.07492421042008@[199.45.49.11]>,
> > > > Robert Peirce <bob RemoveThis @peirce-family.com.invalid> wrote:
> > > >
> > > > > I still donšt know how to create a crontab in the standard way.
> > > > > Crontab
> > > > > e produces the following output:
> > > >
> > > > I experienced the same problem, and it was because I was using my
> > > > own install of Vim <http://www.vim.com>.
> > > >
> > > > I solved my problem by defining a bash shell alias that makes sure
> > > > I'm using the Mac OS X provided vi (really Vim, but as provided by
> > > > Apple):
> > > >
> > > > alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
> > > >
> > > > This works every time, all the time.
> > > >
> > > > Bob Harris
> > >
> > > I just tried that and got the same
> > >
> > > crontab: temp file must be edited in place
> > >
> > > error. Something else is going on here.
> >
> > When you are editing in vi/Vim, do you have a habit of doing
> >
> > :w
>
> I don't think that is the issue. Crontab -e used to work before we
> re-installed the OS. Something got changed, but I don't know what.
I think you need to check the state of the various Vim backup
options when doing a 'crontab -e'
:set backup
causes me to get the following error:
"crontab.sgCEIjluOl" 2L, 28C written
crontab: temp file must be edited in place
:set backup?
backup
is how you can see what the current 'backup' option setting.
:help backup
may give you more information.
NOTE: This may not be the only Vim option that can
shoot-you-in-the-foot. There might be 'writebackup', 'backupdir',
'backupskip', 'backupcopy', 'backupext', or some that are not
obvious to me.
:set all
will tell you ALL of the Vim options and their current settings
If you find any of these options are set in a way to trigger the
crontab behavior, then start looking for the .vimrc or .exrc file
that might be causing it. If you do a
:help vimrc
you will find a list of all the ways Vim can be initialized.
Including environment variables such as VIMINIT or EXINIT, or
$VIM/vimrc
If you are unsure what .vimrc files are being called, you could
try just running your editor with the -v option
vim -V some.random.file
Which should tell you all the files that Vim is 'sourcing' as it
starts up.
Bob Harris >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Dec 10, 2003 Posts: 424
|
(Msg. 17) Posted: Thu Apr 24, 2008 12:37 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <nospam.News.Bob-78854B.19460723042008 RemoveThis @news.verizon.net>,
Bob Harris <nospam.News.Bob RemoveThis @remove.Smith-Harris.us> wrote:
> I think you need to check the state of the various Vim backup
> options when doing a 'crontab -e'
>
> :set backup
>
> causes me to get the following error:
>
> "crontab.sgCEIjluOl" 2L, 28C written
> crontab: temp file must be edited in place
>
> :set backup?
> backup
>
> is how you can see what the current 'backup' option setting.
>
> :help backup
>
> may give you more information.
>
> NOTE: This may not be the only Vim option that can
> shoot-you-in-the-foot. There might be 'writebackup', 'backupdir',
> 'backupskip', 'backupcopy', 'backupext', or some that are not
> obvious to me.
>
> :set all
>
> will tell you ALL of the Vim options and their current settings
>
> If you find any of these options are set in a way to trigger the
> crontab behavior, then start looking for the .vimrc or .exrc file
> that might be causing it. If you do a
>
> :help vimrc
>
> you will find a list of all the ways Vim can be initialized.
> Including environment variables such as VIMINIT or EXINIT, or
> $VIM/vimrc
>
> If you are unsure what .vimrc files are being called, you could
> try just running your editor with the -v option
>
> vim -V some.random.file
>
> Which should tell you all the files that Vim is 'sourcing' as it
> starts up.
>
> Bob Harris
Thanks for the leads. I'll check them out. Although we didn't
consciously change anything that doesn't mean it didn't get changed.
--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office] >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Dec 10, 2003 Posts: 424
|
(Msg. 18) Posted: Thu Apr 24, 2008 12:42 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <6791uaF2nqs0mU1.TakeThisOut@mid.individual.net>,
Chris Ridd <chrisridd.TakeThisOut@mac.com> wrote:
> I think you have to tell the consultant to fix what he's broken.
> There's a reason you're paying them mega bucks, eh?
I agree, but it won't work. It turns out these consultants are
specialists in OS X. I think I know more about the underlying Unix
system than they do and it should be clear from my posts that I don't
know as much as I should!
The people who are taking over from me as I move into retirement know
even less than I do, which is why we are hiring more consultants.
Anyhow, if this problem is going to get solved I have to do it.
--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office] >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Sep 09, 2006 Posts: 2861
|
(Msg. 19) Posted: Thu Apr 24, 2008 12:42 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <bob-F67A7A.08422024042008@[199.45.49.11]>,
Robert Peirce <bob.DeleteThis@peirce-family.com.invalid> wrote:
> In article <6791uaF2nqs0mU1.DeleteThis@mid.individual.net>,
> Chris Ridd <chrisridd.DeleteThis@mac.com> wrote:
>
> > I think you have to tell the consultant to fix what he's broken.
> > There's a reason you're paying them mega bucks, eh?
>
> I agree, but it won't work. It turns out these consultants are
> specialists in OS X. I think I know more about the underlying Unix
> system than they do and it should be clear from my posts that I don't
> know as much as I should!
If the consultants are specialists in Mac OS X, and they can't fix what
they've broken, and you know more than them, why are you hiring them?!
> The people who are taking over from me as I move into retirement know
> even less than I do, which is why we are hiring more consultants.
>
> Anyhow, if this problem is going to get solved I have to do it.
The problem is if cron is screwed up, other things may be screwed up as
well. Personally, I wonder if your install did not complete correctly.
The only good way to solve that problem is to re-install the operating
system.
--
Please send all responses to the relevant news group. E-mail sent to
this address may be devoured by my very hungry SPAM filter. I do not
read posts from Google Groups. Use a real news reader if you want me to
see your posts.
JR >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Dec 10, 2003 Posts: 424
|
(Msg. 20) Posted: Thu Apr 24, 2008 1:27 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <bob-295F8D.08372224042008@[199.45.49.11]>,
Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
> In article <nospam.News.Bob-78854B.19460723042008.RemoveThis@news.verizon.net>,
> Bob Harris <nospam.News.Bob.RemoveThis@remove.Smith-Harris.us> wrote:
> > I think you need to check the state of the various Vim backup
> > options when doing a 'crontab -e'
> >
> > :set backup
I found the problem. Now, what do I do about it? The
/usr/share/vim/vimrc file contains the following lines:
" Don't write backup file if vim is being called by "crontab -e"
au BufWrite /private/tmp/crontab.* set nowritebackup
It appears nowritebackup is not being set. If I manually enter
:se nowritebackup
while editing a cron file, it seems to work okay.
This line seems to work correctly on 10.4.11 and 10.5.2 client and it
used to work on 10.5.2 server, but now it isn't working. Is it possible
the system vimrc file is not being read? How would I know? If not that,
what else could it be?
--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office] >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Dec 10, 2003 Posts: 424
|
(Msg. 21) Posted: Thu Apr 24, 2008 3:24 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <jollyroger-89048A.10053124042008.TakeThisOut@individual.net>,
Jolly Roger <jollyroger.TakeThisOut@pobox.com> wrote:
> > I agree, but it won't work. It turns out these consultants are
> > specialists in OS X. I think I know more about the underlying Unix
> > system than they do and it should be clear from my posts that I don't
> > know as much as I should!
>
> If the consultants are specialists in Mac OS X, and they can't fix what
> they've broken, and you know more than them, why are you hiring them?!
This is Unix problem. I know more than they do about Unix, not about OS
X. I got into OS X because it reminded me of NEXTSTEP, which I had used
before. However, I have never tried to become an expert in it. In
fact, I am probably only aware of 25% of what it can do. We needed OS X
specialists to help us move to a 100% Apple network over the next few
years. I don't have the knowledge to do that and it may not be
completed before I leave.
> The problem is if cron is screwed up, other things may be screwed up as
> well. Personally, I wonder if your install did not complete correctly.
> The only good way to solve that problem is to re-install the operating
> system.
I hate to do that but you are probably correct. So far we have only
found the one problem, but there could be more. Actually, cron works
fine. It is crontab -e that is acting up, and I guess that means it is
vim that is acting up.
--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office] >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Sep 09, 2006 Posts: 2861
|
(Msg. 22) Posted: Thu Apr 24, 2008 3:24 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <bob-4686B9.11245324042008@[199.45.49.11]>,
Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
> In article <jollyroger-89048A.10053124042008.RemoveThis@individual.net>,
> Jolly Roger <jollyroger.RemoveThis@pobox.com> wrote:
>
> > > I agree, but it won't work. It turns out these consultants are
> > > specialists in OS X. I think I know more about the underlying Unix
> > > system than they do and it should be clear from my posts that I don't
> > > know as much as I should!
> >
> > If the consultants are specialists in Mac OS X, and they can't fix what
> > they've broken, and you know more than them, why are you hiring them?!
>
> This is Unix problem. I know more than they do about Unix, not about OS
> X. I got into OS X because it reminded me of NEXTSTEP, which I had used
> before. However, I have never tried to become an expert in it. In
> fact, I am probably only aware of 25% of what it can do. We needed OS X
> specialists to help us move to a 100% Apple network over the next few
> years. I don't have the knowledge to do that and it may not be
> completed before I leave.
Mac OS X is a Unix-based operating system. What, exactly, are these
consultants qualifications, if they know nothing of Unix?
I am considered by my employers to be a Mac OS X / Linux / Unix
specialist. I'd have a hard time believing anyone who calls himself a
Mac OS X specialist without knowing anything about the underlying system
that makes Mac OS X what it is.
> > The problem is if cron is screwed up, other things may be screwed up as
> > well. Personally, I wonder if your install did not complete correctly.
> > The only good way to solve that problem is to re-install the operating
> > system.
>
> I hate to do that but you are probably correct. So far we have only
> found the one problem, but there could be more. Actually, cron works
> fine. It is crontab -e that is acting up, and I guess that means it is
> vim that is acting up.
It's obvious whatever the consultant did, and however you recovered from
the backup, left you with a system that is not in a good state.
Again, if it were me, and especially if this were a mission-critical
server, I'd reinstall from scratch (meaning erase and install) so that I
was sure the install went flawlessly.
And I'd be careful to whom I gave administrator access in the future!
Perhaps these consultants can get their jobs done with non-administrator
accounts. That way if they do screw something up, they only screw up
their own user accounts.
--
Please send all responses to the relevant news group. E-mail sent to
this address may be devoured by my very hungry SPAM filter. I do not
read posts from Google Groups. Use a real news reader if you want me to
see your posts.
JR >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Jun 24, 2004 Posts: 366
|
(Msg. 23) Posted: Thu Apr 24, 2008 4:50 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On 2008-04-24 16:24:54 +0100, Robert Peirce
<bob.DeleteThis@peirce-family.com.invalid> said:
> I hate to do that but you are probably correct. So far we have only
> found the one problem, but there could be more. Actually, cron works
> fine. It is crontab -e that is acting up, and I guess that means it is
> vim that is acting up.
I'm shocked that no-one's suggested using emacs yet ;-)
If you set make-backup-files to nil, I think emacs will do what's needed.
Actually, TextWrangler will probably work as well if you insist on
having a GUI.
Cheers,
Chris >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Sep 09, 2006 Posts: 2861
|
(Msg. 24) Posted: Thu Apr 24, 2008 4:50 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <67bohcF2o2643U1.DeleteThis@mid.individual.net>,
Chris Ridd <chrisridd.DeleteThis@mac.com> wrote:
> On 2008-04-24 16:24:54 +0100, Robert Peirce
> <bob.DeleteThis@peirce-family.com.invalid> said:
>
> > I hate to do that but you are probably correct. So far we have only
> > found the one problem, but there could be more. Actually, cron works
> > fine. It is crontab -e that is acting up, and I guess that means it is
> > vim that is acting up.
>
> I'm shocked that no-one's suggested using emacs yet ;-)
Why? emacs isn't available on all ditributions and installations of
*nix. In comparison, vi/vim is almost always there, and it's the default
editor in many, many installations.
> If you set make-backup-files to nil, I think emacs will do what's needed.
>
> Actually, TextWrangler will probably work as well if you insist on
> having a GUI.
The editor isn't his problem.
--
Please send all responses to the relevant news group. E-mail sent to
this address may be devoured by my very hungry SPAM filter. I do not
read posts from Google Groups. Use a real news reader if you want me to
see your posts.
JR >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Jun 24, 2004 Posts: 366
|
(Msg. 25) Posted: Thu Apr 24, 2008 6:04 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On 2008-04-24 17:40:35 +0100, Jolly Roger <jollyroger.RemoveThis@pobox.com> said:
> In article <67bohcF2o2643U1.RemoveThis@mid.individual.net>,
> Chris Ridd <chrisridd.RemoveThis@mac.com> wrote:
>
>> On 2008-04-24 16:24:54 +0100, Robert Peirce
>> <bob.RemoveThis@peirce-family.com.invalid> said:
>>
>>> I hate to do that but you are probably correct. So far we have only
>>> found the one problem, but there could be more. Actually, cron works
>>> fine. It is crontab -e that is acting up, and I guess that means it is
>>> vim that is acting up.
>>
>> I'm shocked that no-one's suggested using emacs yet ;-)
>
> Why? emacs isn't available on all ditributions and installations of
> *nix. In comparison, vi/vim is almost always there, and it's the default
> editor in many, many installations.
Who cares about other Unixes, we're talking about OS X.
Cheers,
Chris >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Sep 09, 2006 Posts: 2861
|
(Msg. 26) Posted: Thu Apr 24, 2008 6:04 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <67bssbF2o7r10U1.TakeThisOut@mid.individual.net>,
Chris Ridd <chrisridd.TakeThisOut@mac.com> wrote:
> On 2008-04-24 17:40:35 +0100, Jolly Roger <jollyroger.TakeThisOut@pobox.com> said:
>
> > In article <67bohcF2o2643U1.TakeThisOut@mid.individual.net>,
> > Chris Ridd <chrisridd.TakeThisOut@mac.com> wrote:
> >
> >> On 2008-04-24 16:24:54 +0100, Robert Peirce
> >> <bob.TakeThisOut@peirce-family.com.invalid> said:
> >>
> >>> I hate to do that but you are probably correct. So far we have only
> >>> found the one problem, but there could be more. Actually, cron works
> >>> fine. It is crontab -e that is acting up, and I guess that means it is
> >>> vim that is acting up.
> >>
> >> I'm shocked that no-one's suggested using emacs yet ;-)
> >
> > Why? emacs isn't available on all ditributions and installations of
> > *nix. In comparison, vi/vim is almost always there, and it's the default
> > editor in many, many installations.
>
> Who cares about other Unixes, we're talking about OS X.
We're talking about using crontab to edit cron tables, and vi/vim has
beeen the default editor for crontab for, like forever.
--
Please send all responses to the relevant news group. E-mail sent to
this address may be devoured by my very hungry SPAM filter. I do not
read posts from Google Groups. Use a real news reader if you want me to
see your posts.
JR >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Jan 13, 2005 Posts: 916
|
(Msg. 27) Posted: Fri Apr 25, 2008 12:55 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <bob-F67A7A.08422024042008@[199.45.49.11]>,
Robert Peirce <bob.TakeThisOut@peirce-family.com.invalid> wrote:
> In article <6791uaF2nqs0mU1.TakeThisOut@mid.individual.net>,
> Chris Ridd <chrisridd.TakeThisOut@mac.com> wrote:
>
> > I think you have to tell the consultant to fix what he's broken.
> > There's a reason you're paying them mega bucks, eh?
>
> I agree, but it won't work. It turns out these consultants are
> specialists in OS X. I think I know more about the underlying Unix
> system than they do and it should be clear from my posts that I don't
> know as much as I should!
>
> The people who are taking over from me as I move into retirement know
> even less than I do, which is why we are hiring more consultants.
>
> Anyhow, if this problem is going to get solved I have to do it.
Maybe you can now become a consultant to the company :-)
Bob Harris >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Jan 13, 2005 Posts: 916
|
(Msg. 28) Posted: Fri Apr 25, 2008 1:42 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <bob-BFA18B.09273524042008@[199.45.49.11]>,
Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
> In article <bob-295F8D.08372224042008@[199.45.49.11]>,
> Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
>
> > In article <nospam.News.Bob-78854B.19460723042008.RemoveThis@news.verizon.net>,
> > Bob Harris <nospam.News.Bob.RemoveThis@remove.Smith-Harris.us> wrote:
> > > I think you need to check the state of the various Vim backup
> > > options when doing a 'crontab -e'
> > >
> > > :set backup
>
> I found the problem. Now, what do I do about it? The
> /usr/share/vim/vimrc file contains the following lines:
>
> " Don't write backup file if vim is being called by "crontab -e"
> au BufWrite /private/tmp/crontab.* set nowritebackup
>
> It appears nowritebackup is not being set. If I manually enter
> :se nowritebackup
> while editing a cron file, it seems to work okay.
>
> This line seems to work correctly on 10.4.11 and 10.5.2 client and it
> used to work on 10.5.2 server, but now it isn't working. Is it possible
> the system vimrc file is not being read? How would I know? If not that,
> what else could it be?
OK, some suggestions:
1) Modify your own .vimrc to specify your own nowritebackup
autocmd BufReadPre,FileReadPre crontab.* set nowritebackup
NOTE 1: I am setting the value when the file is read,
NOT when it is written.
NOTE 2: I did NOT specify a directory path.
I just said any file that starts with
crontab.* is treated this way.
2) Make the above modification to /usr/share/vim/vimrc
3) I would have suggested maybe putting a modeline
(:help modelines) into the crontab file, but the
/usr/share/vim/vimrc sets modelines=0 which disables
modelines.
Bob Harris >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Dec 10, 2003 Posts: 424
|
(Msg. 29) Posted: Fri Apr 25, 2008 2:16 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <nospam.News.Bob-FC333A.21423324042008 DeleteThis @news.verizon.net>,
Bob Harris <nospam.News.Bob DeleteThis @remove.Smith-Harris.us> wrote:
> OK, some suggestions:
>
> 1) Modify your own .vimrc to specify your own nowritebackup
>
> autocmd BufReadPre,FileReadPre crontab.* set nowritebackup
>
> NOTE 1: I am setting the value when the file is read,
> NOT when it is written.
>
> NOTE 2: I did NOT specify a directory path.
> I just said any file that starts with
> crontab.* is treated this way.
>
> 2) Make the above modification to /usr/share/vim/vimrc
Thanks, Bob. I'll try it as soon as I can.
--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office] >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
External

Since: Dec 10, 2003 Posts: 424
|
(Msg. 30) Posted: Fri Apr 25, 2008 2:17 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
In article <nospam.News.Bob-C7C0D2.20554824042008.RemoveThis@news.verizon.net>,
Bob Harris <nospam.News.Bob.RemoveThis@remove.Smith-Harris.us> wrote:
> Maybe you can now become a consultant to the company :-)
>
> Bob Harris
I may have to.
--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office] >> Stay informed about: cron on 10.5.2 server |
|
| Back to top |
|
 |  |
|
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|