On a shared machine somehow a directory ;
(with a lot of stuff in it) was created.
I only have shell access to this machine and so I can't use any GUI File explorer to delete that file.
rm -rf ;
results in strange behavior since the semicolon probably acts as a command separator and is not evaluated as the directory's name.
rm -rf ./; rm: refusing to remove '.' or '..' directory: skipping './'
rm: refusing to remove '.' or '..' directory: skipping './'
Furthermore I do not want to delete other directories and so I am not willing to play around with wildcards and stuff.
How can I securely remove that semicolon-directory recursivly?