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

  1. Sender: owner-paper@nacm.com
  2. Precedence: bulk
  3.  
  4. [delete mounting information]
  5. > mv This\ File\ Has\ 6\ Spaces\ In\ It This_File_Has_0_Spaces_In_It
  6. > The \ followed by a space gets treated as a "non-breaking" space by the
  7. > command line interpreter.
  8.  
  9. Or  you can  just use quotes.
  10.  
  11. mv "This File Has 6  Spaces In it" This_File_Has_0_Spaces_In_It
  12.  
  13. In some causes it's easier to use  quotes then \ since you can get mixed
  14. spaces and special characters and I think you might need to know the 
  15. hex/dec. codes for them.
  16.  
  17. For bash users..: mv This<tab>  This_File_Has....  (Tab is a finisher)
  18.  
  19.  
  20.