RE: pipelines with paths containing spaces

2009-08-30 Thread David Christensen
Marco Atzeri wrote: > not really cygwin specific > find /cygdrive/c/Documents\ and\ Settings/ -print0 |xargs --null ls > see "man xargs" That explains it. Here's a work-around: 2009-08-31 04:04:36 dpchr...@p43400e ~ $ ls -d /cygdrive/c/Documents\ and\ Settings/ | perl -ne 's/\n/\00/;

Re: pipelines with paths containing spaces

2009-08-30 Thread Jeremy Bopp
David Christensen wrote: > I am having trouble using pipelines with paths containing spaces: This is not technically a Cygwin-specific issue, so I'm going to try to keep this short. > 2009-08-31 01:16:50 administra...@p43400e ~ > $ ls -d /cygdrive/c/Documents\ and\ Settings/ | xargs ls >