Re: socket or pipe?

2007-03-15 Thread Gilad Ben-Yossef
Shachar Shemesh wrote: Gilad Ben-Yossef wrote: Pipes are more efficient, but only applies to 1:1 communication (father to child and similar). Can you give a brief explanation as to why and by what factor? Didn't manage to find any simple explanation on the web. First mentioned in Advanced P

Re: socket or pipe?

2007-03-15 Thread Gilad Ben-Yossef
Amos Shapira wrote: On 15/03/07, *Constantine Shulyupin* <[EMAIL PROTECTED] > wrote: named pipe is a pipe In that case one should be able to take advantage of the faster pipes even for 1:n situations. The fater nature of pipes beyond Unix domain sockets are ve

find -mtime and wrong data return

2007-03-15 Thread ik
Hello, I wish to use the find command in order to find all the files that were created prior to specific file. So I tried to use the following command: find -type f -mtime -7 In order to get all the files that where modified prior to a week ago, but it only gives me files that where last chan

Re: find -mtime and wrong data return

2007-03-15 Thread Ehud Karni
On Thu, 15 Mar 2007 14:38:30 ik <[EMAIL PROTECTED]> wrote: > > I wish to use the find command in order to find all the files that > were created prior to specific file. > > So I tried to use the following command: > > find -type f -mtime -7 > > In order to get all the files that where modified prio

Re: find -mtime and wrong data return

2007-03-15 Thread Geoffrey S. Mendelson
On Thu, Mar 15, 2007 at 02:38:30PM +0200, ik wrote: > Hello, > were created prior to specific file. > > So I tried to use the following command: > > find -type f -mtime -7 > > In order to get all the files that where modified prior to a week > ago, but it only gives me files that where last ch

Re: System stopped wotking with firefox

2007-03-15 Thread Michael Vasiliev
On Wednesday March 14 2007, Uri Bruck wrote: > Zvi Har'El wrote: > >> אכן, בשלב זה, אתר הכללית תומך רק בדפדפנים מסוג אינטרנט אקספלורר של > >> מיקרוסופט מגרסה 5.5 ומעלה. > >> > >> מבדיקות תקופתיות שאנו עורכים על הרגלי הגלישה בישראל עולה כי כ-98% > >> מכלל הגולשים בישראל משתמשים בדפדפן מסוג אינטרנט א

RE: find -mtime and wrong data return

2007-03-15 Thread Rony Shapiro
>From info find: 2.3.2 Comparing Timestamps -- As an alternative to comparing timestamps to the current time, you can compare them to another file's timestamp. That file's timestamp could be updated by another program when some event occurs. Or you could set it to a part

Re: find -mtime and wrong data return

2007-03-15 Thread Yedidyah Bar-David
On Thu, Mar 15, 2007 at 02:38:30PM +0200, ik wrote: > Hello, > > I wish to use the find command in order to find all the files that > were created prior to specific file. > > So I tried to use the following command: > > find -type f -mtime -7 Try find -type f -mtime +7 -- Didi ==

Re: socket or pipe?

2007-03-15 Thread Constantine Shulyupin
named pipe is a pipe On Wed, 2007-03-14 at 18:41 +1100, Amos Shapira wrote: > On 07/03/07, Gilad Ben-Yossef <[EMAIL PROTECTED]> wrote: > Constantine Shulyupin wrote: > > Suggest me please, what better to use for local IPC, socket > or pipe? > > What are pro and cons

RE: find -mtime and wrong data return

2007-03-15 Thread Peter
find -type f -mtime +7 be careful, esp. if you do not use -type f . You can bracket 'between 7 and 9 days' etc with: find -type f -mtime +7 -a -mtime -9 This is useful for answering questions like 'wtf happened to my not-backed-up file xxx.c 3 days ago, pretty please $DEITY make there be

Re: find -mtime and wrong data return

2007-03-15 Thread ik
Hello, First of all I wish to thank you all for your answers. In did I miss understood the minus and the plus thingys on the man page. The find -type f -mtime +7 did worked for me. Ido On 3/15/07, Peter <[EMAIL PROTECTED]> wrote: find -type f -mtime +7 be careful, esp. if you do not use -ty