2

Could someone help me delete a directory named -ltr I accidentally created this when trying to list items.

None of this works:

rm -R *-ltr*
rm -R "-ltr"
rm -R '-ltr'
Satō Katsura
  • 13,368
  • 2
  • 31
  • 50
Dora
  • 21

1 Answers1

7

try:

rm -r  -- -ltr

man rm:

To remove a file whose name starts with a '-', for example '-foo', use one of these commands:

$ rm -- -foo

OR

$ rm ./-foo
Rahul
  • 13,589