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

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