Skip to content

Instantly share code, notes, and snippets.

@yammerjp
Created May 22, 2023 01:36
Show Gist options
  • Select an option

  • Save yammerjp/ddb8a0a6ef9140084b91077dec9da899 to your computer and use it in GitHub Desktop.

Select an option

Save yammerjp/ddb8a0a6ef9140084b91077dec9da899 to your computer and use it in GitHub Desktop.
偶数列のフィールドを出力
{
for(i=1; i<=NF; i++) {
if(i%2==0) {
if(i!=1) {
printf(" ")
}
printf("%s", $i)
}
}
printf("\n")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment