Hi
There's a name like: -ksh_history.xls on my AIX system, result of programming error. So, I would to remove it with the rm command... unfortunately this isn't work seems the message: rm: Not a recognized flag: k
As anyone an idea about this?? Thx
Try:
rm -rf *ksh_history.xls
houston:root:/home/admin>rm -rf *ksh_history.xls /usr/bin/rm: Not a recognized flag: k Usage: rm [-firRe] [--] File...
It doesn't work! My systems is a AIX4.3.3
Try rm \-ksh_history.xls
It doesn't work too... I known that it's possible but i don't remember!
rm -rf ./-ksh_history.xls
Yes, it's works fine! Thanks a lot for your help
You could have also done:
rm -- -ksh_history.xls
Yeah, it's running too...
Thank u all for your help