home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / dos / extra / docs / maillist / text / archive.95 / text5728.txt < prev    next >
Encoding:
Internet Message Format  |  1996-03-31  |  1.3 KB

  1. Received: from netnet1.netnet.net (netnet1.netnet.net [198.70.64.2]) by nacm.com (8.6.10/8.6.9) with ESMTP id VAA21287 for <executor@nacm.com>; Fri, 20 Oct 1995 21:10:17 -0700
  2. Received: (from mouring@localhost) by netnet1.netnet.net (8.6.9/8.6.9) id XAA18037; Fri, 20 Oct 1995 23:10:13 -0500
  3. Date: Fri, 20 Oct 1995 23:10:13 -0500 (CDT)
  4. From: Ben Lindstrom <mouring@netnet.net>
  5. To: Tobermory_Everett@hmc.edu
  6. cc: Scott Stevens <scotts@randd.empi.com>, executor@nacm.com
  7. Subject: Re: Executor and Linux permissions
  8. In-Reply-To: <199510202356.QAA03214@osiris.ac.hmc.edu>
  9. Message-ID: <Pine.SUN.3.91.951020230722.17773A-100000@netnet1.netnet.net>
  10. MIME-Version: 1.0
  11. Content-Type: TEXT/PLAIN; charset=US-ASCII
  12. Sender: owner-paper@nacm.com
  13. Precedence: bulk
  14.  
  15. [delete mounting information]
  16. > mv This\ File\ Has\ 6\ Spaces\ In\ It This_File_Has_0_Spaces_In_It
  17. > The \ followed by a space gets treated as a "non-breaking" space by the
  18. > command line interpreter.
  19.  
  20. Or  you can  just use quotes.
  21.  
  22. mv "This File Has 6  Spaces In it" This_File_Has_0_Spaces_In_It
  23.  
  24. In some causes it's easier to use  quotes then \ since you can get mixed
  25. spaces and special characters and I think you might need to know the 
  26. hex/dec. codes for them.
  27.  
  28. For bash users..: mv This<tab>  This_File_Has....  (Tab is a finisher)
  29.  
  30.  
  31.