Re: awk to remove backet

2002-11-11 Thread Benoit Lacherez
Oi Yan a écrit : > Hi all > > How do I remove the backet "(" ")" > > file: > (abc.com) > > to > > file: > abc.com > > > thank you for your help > What about sed 's/(\([^)]*\))/\1/g' ? -- Benoit Lacherez Académ

Re: awk to remove backet

2002-11-11 Thread Benoit Lacherez
ant the cases where text only is inside. > > -John Von Essen > > On Monday, November 11, 2002, at 04:57 PM, Benoit Lacherez wrote: > > > What about sed 's/(\([^)]*\))/\1/g' ? > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscrib

Re: Directory

2002-11-22 Thread Benoit Lacherez
> My Pictures > milneweb# cd My Pictures > cd: Too many arguments. > > Is it because of the space between the words? How do I get around this? Yes: either you type cd "My Pictures" or cd My\ Pictures. Actually, most shells support completion: just type cd My in bash or tcsh