Re: changing time on a symlink

1998-10-29 Thread ixx
On Wed, Oct 28, 1998 at 07:28:43PM -0800, Salil Kumar wrote: Hi, How can we change the time on a sym link through a C program ? look at utime (man 2 utime)

Re: changing time on a symlink

1998-10-29 Thread Salil Kumar
ixx wrote: On Wed, Oct 28, 1998 at 07:28:43PM -0800, Salil Kumar wrote: Hi, How can we change the time on a sym link through a C program ? look at utime (man 2 utime) Hi,I think utime change the time for the file pointed by sym link. I need to change the time of symlink only. Any other

Re: changing time on a symlink

1998-10-29 Thread Henrik Nordstrom
Salil Kumar wrote: I need to change the time of symlink only. Any other suggestions ? I think the only way is to use the time/date hack. 1. remove the link 2. set the clock to when the link should be modified 3. recreate the link 4. reset the clock to current date/time. There are wery few

RE: Newbie: Searching sub directories for text

1998-10-29 Thread Andras S. Haramasz
This works too: find /dirname -exec grep -l 'whatever text' {} \; -Original Message- From: Glynn Clements [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, October 28, 1998 4:30 PM To: Dave Cc: [EMAIL PROTECTED] Subject:Re: Newbie: Searching sub directories for text Dave

No Subject

1998-10-29 Thread urgent
10/29/98 Y2K Solution! 8 Pine Circle Dr., Silicon Valley, Calif. OTC Company "TCFG" 21 st. Century Frontier Group has through several members of their administrative research department leaked vital information about their companies efforts.

FREE DEMO of Web Promotion Software that Puts You On Top of 1,000+ Search Engines!

1998-10-29 Thread hire
Greetings! I thought I would take some time today to let you know about a wonderful new software package that will dramatically increase your web site's visibility. It's called The Spider, and I have been using it for several months and enjoyed a tremendous increase in my website's traffic.

Re: changing time on a symlink

1998-10-29 Thread Salil Kumar
Henrik Nordstrom wrote: Salil Kumar wrote: I need to change the time of symlink only. Any other suggestions ? I think the only way is to use the time/date hack. 1. remove the link 2. set the clock to when the link should be modified 3. recreate the link 4. reset the clock to

Re: changing time on a symlink

1998-10-29 Thread Henrik Nordstrom
Salil Kumar wrote: Thanks for the suggestion, but If we change system time, and if the next CPU slice goesto some utility acting on system time, (cron jobs etc.) will not this solution work adversely ? Yes. There are some major drawbacks from changing the system time. Currenty I am

Re: changing time on a symlink

1998-10-29 Thread Glynn Clements
Salil Kumar wrote: I need to change the time of symlink only. Any other suggestions ? I think the only way is to use the time/date hack. 1. remove the link 2. set the clock to when the link should be modified 3. recreate the link 4. reset the clock to current date/time.