Skip to content

Instantly share code, notes, and snippets.

@cdolek
Last active April 10, 2018 15:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdolek/244aabc843cefb3517c28e70d1fa8c12 to your computer and use it in GitHub Desktop.
Save cdolek/244aabc843cefb3517c28e70d1fa8c12 to your computer and use it in GitHub Desktop.
replacing value of a column in a csv file
# Here we replace col 4 with the value of 1
awk -F, '{$4="1";}1' OFS=, my.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment