Hi, I've been getting this error intermitently. It goes away with a reload but every couple of days I see this warning. Since it is not reproducible easily I haven't been able to track it down.
Has anyone see such type of warnings? Any ideas how to go about debugging this?
Warning...
Hi,
I want to check if the input is a valid float number. i.e. it should filter out 12..0 , abc , 12abc etc. I was trying to read in the input as a string but it didn't work that great. Please let me know if you know of some other way.
Cheers,
Pravin.
Hi All,
I am having problem with this piece of C code. I want to input two values. One is a char and another is a char * and I want to keep doing this in a while loop. However after the first iteration the program doesn't stop at the first scanf.
Please help me out here.
Thanks
Pravin...
Hi,
I want to delete a column from a file while inside a vi session. I know the awk solution I want to know if it is possible using vi.
Cheers,
Pravin.
Hi,
I have a file like
abc bcdcde def
efg fgh
I want awk to read it and print
abc bcd cde def
efg fgh
i.e. substitute \ with " "
Can anyone help me here?
I tried
awk '{if ($NF=="\\") {$NF= " ";printf("%s",$0);} else {print}}' file
but it is...
Hi ,
I have a question regarding email viruses. Such emails recieved in Outlook Express or an email client on your local computer can be dangerous. But if I recieve such an email in my web-based email account will it still be dangerous.
I would be grateful if you could point me to some page...
Hi,
I want a awk script which will not print the last column of the line.
Say my input is
/usr/local/bin/gdb
/u/src/bin/ddd
I want the output to be
/usr/local/bin
/u/src/bin
awk -F/ '{for(i=1;i<NF;i++) {print "/"$i}}'
gives me
/usr
/local
/bin
/u
/src
/bin
I want them printed...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.