Not to seem ungrateful, but isn't it a Bad Thing that it is not straightforeward to delete any file on the system (as root, and thwarted merely because of the characters in the name of the file/directory)? I'm not in a position to mangle lynx, but oughtn't it to be able to zap ANY file regardless of its name? (emacs is obtuse to me.) Is this worthy of a PR? Or are there other ways to kill a malconforming file? Why should an annonomous FTP user be able to create a directory tree that the root account of the machine can't traverse and delete normally? (Sigh.)Advertising
-------- Original Message -------- Subject: Re: deleting directories with ??? in name
Erik Trulsson wrote:
On Mon, Mar 15, 2004 at 03:51:37PM -0800, Derrick Ryalls wrote:
I've tried lynx, but it did not display the files.
I tried emacs, but I was only able to rename two of the directories to other names I could delete; the other two gave me an error of illegal character. I tried 'rm -i -- ?*' but it didn't find the files. I tried 'find . -inum 146 -delete' but while it gave no error message, the files/directories remain.
Help! How do I delete these odd directories? Please CC me in your response as I'm not currently subscribed to the List.
#mkdir dir?me #rmdir dir\?me
That assumes that filenames actually contain questionmarks. ls(1) by default displays all unprintable characters as question marks. To see what the filenames actually are use 'ls -aB'.
To delete files with strange names you can always do a 'rm -i *' and answer 'y' only for the weird files.
'rm -i *' returns "no match" 'ls -aB' shows me the file names, but even after carefully typing in what it shows me in an 'rm' command (name in quotes) says not found. There are \216, \235, \237, and \377 characters in the names, if this matters. Thanks.
_______________________________________________ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "[EMAIL PROTECTED]"