in message <[EMAIL PROTECTED]>, wrote David Banning thusly... > > I have a file called ??????????????? ... > > I can't seem to clean it away. > > rm ???????? > rm '????????' > rm "????????" > > all do not work.
try something like...
find . -inum $( /bin/ls -i | fgrep '?' | awk '{print $1}' ) -print0 \
| xargs -0 rm -f
- parv
--
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message
