LoginSignup
12
10

More than 5 years have passed since last update.

awk > 1列目以外を表示する > awk '{$1=""; print}'

Last updated at Posted at 2015-03-18

動作環境

CentOS 6.5

awkにて1列目だけ非表示にしたい時

$echo "1 2 3 4 5" | awk '{$1=""; print}'
2 3 4 5

参考

12
10
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
12
10