=0D=0A> On Tue, 2001-12-18 at 21:53, [EMAIL PROTECTED] wrote:=0D=0A> > Als=
o, I 've some 3 folders copied as such into Linux =0D=0A> from my CDROM, wh=
ich I=0D=0A> > want to take back to Windows. One of the folder name =0D=0A>=
has a space in between.=0D=0A> > How do I get that. Can any Linux techies =
help=0D=0A> =0D=0A=0D=0AIf you are cp'ing the files in bash, try=0D=0A=0D=
=0Abash$ cp "filename with space" /destination/dir=0D=0A=0D=0AThe double-=
quotes will force bash to treat it as a single entity.=0D=0A=0D=0AThe follo=
wing will also work...=0D=0A=0D=0Abash$ cp filename\ with\ space /destinat=
ion/dir=0D=0A=0D=0A=0D=0AManoj.=0D=0A =0A