home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / dos / extra / docs / maillist / text / archive.95 / text5733.txt < prev    next >
Encoding:
Text File  |  1996-03-31  |  812 b   |  27 lines

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