Re: lseek with bash

2011-12-11 Thread Dan Douglas
On Friday, December 09, 2011 04:35:11 PM Chet Ramey wrote: > On 12/9/11 10:12 AM, Jean-Jacques Brucker wrote: > > Playing with flock to securely access to a file shared by multiple > > process. I noticed there are no documented way to do an lseek on an > > > opened fd with bash : > [...] >

Re: lseek with bash

2011-12-09 Thread Chet Ramey
On 12/9/11 10:12 AM, Jean-Jacques Brucker wrote: > Playing with flock to securely access to a file shared by multiple > process. I noticed there are no documented way to do an lseek on an > opened fd with bash : [...] > I have solve my problem by making this small binary (i just needed a re

Re: lseek with bash

2011-12-09 Thread Greg Wooledge
On Fri, Dec 09, 2011 at 04:12:15PM +0100, Jean-Jacques Brucker wrote: > I have solve my problem by making this small binary (i just needed a rewind) : > > int main(int argc,char * argv[]) { return lseek(atoi(argv[1]),0L,0); } > > But i ll be glad to use a standard and finished tool. That looks p