f****n 发帖数: 4615 | 1 How to delete a file whose name is like this:
March28 3:20 txt
No dot(".") between them. |
s**i 发帖数: 30 | 2 try use autocomplete function of shell to get the name (using Tab).
【在 f****n 的大作中提到】 : How to delete a file whose name is like this: : March28 3:20 txt : No dot(".") between them.
|
k**y 发帖数: 320 | 3 rm M*
rm "March28 3:20 txt"
【在 s**i 的大作中提到】 : try use autocomplete function of shell to get the name (using Tab).
|
g*****g 发帖数: 34805 | 4 Or plus \ before any non-regular character.
【在 f****n 的大作中提到】 : How to delete a file whose name is like this: : March28 3:20 txt : No dot(".") between them.
|
o********e 发帖数: 34 | 5 rm "March28 3:20 txt" or rm "March28*"
【在 f****n 的大作中提到】 : How to delete a file whose name is like this: : March28 3:20 txt : No dot(".") between them.
|