I accidentally created a directory named: backups\r\r. Any attempt at deleting it failed!
backups\r\r
How can this directory be deleted?
use ANSI-C quoting: rmdir $'backups\r\r'
rmdir $'backups\r\r'
or delete interactively with pattern matching: rmdir -i backups??
rmdir -i backups??