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

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