Operating System - HP-UX
1834742 Members
2868 Online
110070 Solutions
New Discussion

Not able to delete this file

 
SOLVED
Go to solution
jhingoor
Frequent Advisor

Not able to delete this file

-rw-r----- 1 root sys 11698176 Jun 29 12:09 IBM Informix Client-SDK.msi


Hi guys i am not able to delete this file even with root permissions..what should i do????
4 REPLIES 4
MarkSyder
Honored Contributor
Solution

Re: Not able to delete this file

It's the space in the file name that's doing it. Try:

rm -i Inf*

The -i means it will ask you to confirm before you delete, so you don't accidentally delete other files starting with Inf.

Mark Syder (like the drink but spelt different)
The triumph of evil requires only that good men do nothing
john korterman
Honored Contributor

Re: Not able to delete this file

Hi,

first, try to ls the file, e.g. by putting the file name in single quotes:
$ ls 'IBM Informix Client-SDK.msi'

When this is established, rm it.

regards,
John K.
it would be nice if you always got a second chance
jhingoor
Frequent Advisor

Re: Not able to delete this file

thanx guys you r just great.........
jhingoor
Frequent Advisor

Re: Not able to delete this file

Thanks.........