- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to remove strange "empty" files produced by mi...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2001 07:31 PM
06-17-2001 07:31 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2001 07:51 PM
06-17-2001 07:51 PM
Re: How to remove strange "empty" files produced by mistaking?
Can u send a sample list?.
U try to remove them using,
/bin/rm -- "
Cheers...
Satish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2001 08:11 PM
06-17-2001 08:11 PM
Re: How to remove strange "empty" files produced by mistaking?
Thanks a lot for you help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2001 08:16 PM
06-17-2001 08:16 PM
SolutionTry removing the file with:
rm images*
or
rm *images
That should do the trick for you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2001 08:58 PM
06-17-2001 08:58 PM
Re: How to remove strange "empty" files produced by mistaking?
It was done like this:
#rm images*
Thanks a lot,Patrick!
You are really expert!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2001 09:12 PM
06-17-2001 09:12 PM
Re: How to remove strange "empty" files produced by mistaking?
In my home dir, there is file named:ENGLISHSETUP.PDF;$sessionid$MTVR4YQAAAKVZAMTA1FU4GQ
I can not remove it.
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2001 01:46 AM
06-18-2001 01:46 AM
Re: How to remove strange "empty" files produced by mistaking?
your problems seem to be just quoting!
First, use the option "-b" for your "ls" - only then you will
be shown the "invisible" characters which caused your
problem in the first case you posted. Then use single
quotes around the file names, for without them your
shell will substitute "$session" with the contents of the
variable "session"...
HTH,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2001 01:50 AM
06-18-2001 01:50 AM
Re: How to remove strange "empty" files produced by mistaking?
try this:
rm -i *PDF*
with -i you are asked to confirm delete for every *PDF* file in the directory. So if there are more files in that directory that have PDF in their filename you only answer y for file: ENGLISHSETUP.PDF;$sessionid$MTVR4YQAAAKVZAMTA1FU4GQ and n (no) to keep all others.
regards,
Bart
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-18-2001 01:59 AM
06-18-2001 01:59 AM
Re: How to remove strange "empty" files produced by mistaking?
#rm -i *.PDF.*
Thanks, expert!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2001 07:07 AM
06-19-2001 07:07 AM
Re: How to remove strange "empty" files produced by mistaking?
Try with,
rm "ENGLISHSETUP.PDF;\$sessionid\$MTVR4YQAAAKVZAMTA1FU4GQ"
I just enclosed in file name quotes and escaped '$' chars.
Cheers...
Satish.