On Mon, Jan 22, 2001 at 12:09:19PM +0530, Vineeta wrote:
> But,if you are going to try something like vi "aa dd" where "aa dd" is the
> filename,it will interpret it as 2 different files to be edited.

Uh...well...sorry, no.  If you do exactly what you said:

        vi "foo bar"

you will create a file named "foo bar".  In fact, this is what you have
to do when dealing with an SMB mounted FAT/FAT32 filesystem; find scripts
no longer can simply do things like:

        find . -print | xargs plugh

because of the spaces being expanded.** Instead, it becomes something like

        find . -exec plugh "{}" \;

if you don't mind beating up your system, or some other option to xargs to
let you do the same thing, but I don't feel like looking it up right now.

Cheers,
-- 
        Dave Ihnat
        [EMAIL PROTECTED]

** Yes, I know that the Linux 'find' doesn't need the '-print' option--either
   figure I'm being a completist for portabilities sake, or a dinosaur who
   learned under Unix.  Your choice.  Holds for any other options on examples
   I may give, too, unless they're flat-out wrong.



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to