Chapter 6. Tips and techniques 149
Even Qshell may be confused by the unusual characters. However in this case, there is a
solution. That is you may quote the name. The easiest way to delete the problem file is to
navigate into its directory using cd and then delete it by using the rm command. Enter the file
name in double quotation marks to prevent Qshell being confused by any special characters,
for example:
rm “c:\OrderManagement\log\OrderManagement.log”
If you want to use the file, then you can use Qshell commands. It may be easier, however, to
rename it to a normal name and go back to familiar techniques. Oddly the UNIX command for
rename is mv (it is also the move command), for example:
rm “c:\OrderManagement\log\OrderManagement.log” Orde ...