Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

#a.out# 1

Status
Not open for further replies.

pandigunta

Programmer
Aug 22, 2000
12
US
Hi,
i have this file(#a.out#---it occupies 698662) in one of my directories. i want to remove that but i get a message " too few arguments" ... i used rm #a.out# .
Any idea how to go about this. i am running out of space....
Thanks
 
Try rm -- #a.out#, or rm -f -- #a.out#. The -- helps demasking shell characters. If that still doesn't work try rm -- \#a.out\#.
I had similar problems some years ago and finally surrendered, leaving "-C" in my homedir... ;-)

Hope it helps! regards
chenn
 
I tried but....
i don't know what's wrong?
Where else can i put this message???
^_^
 
you could also try rm -i *
the -i (interactive option) will prompt you for each file in the directory. After you remove the problem file, just break out .
 
These work on my box: -

rm "#a.out#"
rm [#]a.out[#]



Ged Jones

Top man
 
Hi jones,
i tried rm "#a.out#" and it worked.
Thanks
^_^
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top