Search Results

Search: Posts Made By: martin0852
3,303
Posted By pamu
To search from yesterdays date after 19.00 ......
To search from yesterdays date after 19.00 ... use this..
It will print all the lines after the match found...

search_var=$(echo "`date --date="yesterday" +%Y-%m-%d` 19:")

sed...
2,135
Posted By Scrutinizer
Somehow that awk code is not protected from the...
Somehow that awk code is not protected from the shell, because it does not get run as awk code but it is run by the shell. Those are shell error messages, not awk...
It may be that every line is...
2,135
Posted By agama
Well that's a new one on me -- not familiar with...
Well that's a new one on me -- not familiar with Nedit.

It sounds like a quoting problem, but I don't have access to a Solaris box at the moment, so I cannot poke from that angle. I do know...
2,135
Posted By agama
Something with awk that might work for you: ...
Something with awk that might work for you:


awk '
/>>-+$/ {
delete cache;
ci = 0;
snarf = 1;
}
snarf { cache[ci++] = $0 };
/^-+<<$/ { snarf = 0; }...
Showing results 1 to 4 of 4

 
All times are GMT -4. The time now is 04:15 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy