Created
November 26, 2013 03:50
-
-
Save tkuchiki/7653212 to your computer and use it in GitHub Desktop.
awk でN番目以降の値を表示
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ls -l | awk 'NR > 1 { for (i = 10; i < NF; i++) { printf("%s ", $i) } print $NF }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment