LoginSignup
2
2

More than 5 years have passed since last update.

awk

Last updated at Posted at 2014-10-15

date

14:25 - 15:37

awk '{if($2 ~ /^14:2[5-9]/ || $2 ~ /^14:[3-5][0-9]/ || $2 ~ /^15:[0-2][0-9]/ || $2 ~ /^15:3[0-7]/) print} '

カラム出力

12カラム目以降

awk 'BEGING{a=""}{for(i = 12; i <= NF; i++){ a = a OFS $i}; a = a ORS;}END{print a}'

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2