Skip to content

Instantly share code, notes, and snippets.

@cdolek
Created June 3, 2017 00:09
Show Gist options
  • Save cdolek/27d180a2523a122e573c08e27953531e to your computer and use it in GitHub Desktop.
Save cdolek/27d180a2523a122e573c08e27953531e to your computer and use it in GitHub Desktop.
Convert all lines in a csv to lowercase
cat file.csv | awk '{print tolower($0)}' > file_lowercase.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment