Operating System - HP-UX
1830931 Members
2319 Online
110017 Solutions
New Discussion

Can't read answers to my question or assign points

 
SOLVED
Go to solution
Greg Roberts
Advisor

Can't read answers to my question or assign points

I can read other peoples Q&A but I can't read mine. Tried an other sun and win95, both netscape and IE5. Tried logging in and logging off forum. Any suggestions. Of course I won't be able to read the answers.
Thanks
7 REPLIES 7
f. halili
Trusted Contributor

Re: Can't read answers to my question or assign points

I have some problems submitting.... i just submit them twice and they appear.
..... TWICE
Can you read this message????
derekh
Greg Roberts
Advisor

Re: Can't read answers to my question or assign points

I can read this. I had a question about deleting files with 10 responses but can read any. Can someone maybe copy them to this??
Greg Roberts
Advisor

Re: Can't read answers to my question or assign points

Never mind. Found if hit reload button the answers will come up. Must have something to do with our company caching web pages since it did it on two separate systems.
f. halili
Trusted Contributor
Solution

Re: Can't read answers to my question or assign points

You can put these lines on a script:

find /tmp/reck -type f -exec ls -al {} ;
echo done


Which means recursively find on /tmp/reck all regular
files and delete them and echo done...........enjoy

Don't forget to put a backslash before the semicolon on the first line of the script.
The backslash character does not display here.

-fnhalili
derekh
f. halili
Trusted Contributor

Re: Can't read answers to my question or assign points

You can put these lines on a script:

find /tmp/reck -type f -exec ls -al {} ;
echo done


Which means recursively find on /tmp/reck all regular
files and delete them and echo done...........enjoy

Don't forget to put a backslash before the semicolon on the first line of the script.
The backslash character does not display here.

-fnhalili
derekh
Maureen Gunkel
Trusted Contributor

Re: Can't read answers to my question or assign points

See attached file (hopefully!!!!!)

Mo
No matter where you go, there you are.
Kofi ARTHIABAH
Honored Contributor

Re: Can't read answers to my question or assign points

to get the \ you have to press \ twice.

So what you want is

find /directory -type f -exec rm {}\;

Cheers,

nothing wrong with me that a few lines of code cannot fix!