Search Results

Search: Posts Made By: wyarosh
1,905
Posted By agama
awk ' /variableStep/ { if(...
awk '
/variableStep/ {
if( !printed++ )
print;
next
}
{
if( $1 > last+25 )
for( i = last+25; i < $1; i+= 25 )
...
1,905
Posted By agama
Try this: awk -v cord=${cord:-25} ' ...
Try this:


awk -v cord=${cord:-25} '
/variableStep/ {
if( !printed++ ) # allows multiple headers in the input
print;
next
}
{
if(...
Showing results 1 to 2 of 2

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