Skip to content

Instantly share code, notes, and snippets.

@cdolek
Created June 2, 2017 20:49
Show Gist options
  • Save cdolek/63ddb3711264ad602368baaa306906a0 to your computer and use it in GitHub Desktop.
Save cdolek/63ddb3711264ad602368baaa306906a0 to your computer and use it in GitHub Desktop.
Remove first and last character from csv
rev input.csv | cut -c2- | rev | cut -c2-
Or
sed 's/.$//; s/^.//' input.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment