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

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