awk between 2 timestamps
New to awk I am trying to print only the lines from a logfile with the first field between these 2 values:
awk '{print $0($1 > 1300000000) && ($1 < 1305000000)}' Log2.log
and开发者_Go百科...its not right.
awk '1300000000 < $1 && $1 < 1305000000' Log2.log
Style :)
精彩评论