coyote:/home/jonas# ls -l D*
-rw-r--r-- 1 jonas users 5 Dec 1 00:53 D:\\TEMP\\DUMMY
Now, I want to remove this file, so I go:
coyote:/home/jonas# rm D:<tab>
And Linux expands this to:
coyote:/home/jonas# rm D:\TEMP\DUMMY
, which, ofcourse results in a "rm: D:TEMPDUMMY: No such file or
directory". Can this be fixed in some easy way?
/Jonas