home *** CD-ROM | disk | FTP | other *** search
/ Executor 2.0 / executorv2.0.iso / pc / linux / extra / docs / maillist / text / archive.95 / text2047.txt < prev    next >
Encoding:
INI File  |  1996-04-02  |  549 b   |  20 lines

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