[luau] Re: [Lula] How do I delete a file with an illegal name

Ben Beeson ben at hawaii.rr.com
Sun Mar 10 12:55:02 PST 2002


Steve,

Here is one I found for this...

$ ls    to find out that you have a file with a funny name...

$ ls -i to get the file with the funny name's inode number

$ find . -inum 1234 -exec rm {} \;     to remove the file in the current
directory with inode number 1234 (put the inode number that you found
from ls -i here)

Hope this helps,

Ben



More information about the LUAU mailing list