Skip to content

Instantly share code, notes, and snippets.

@tonyklawrence
Created March 29, 2019 11:48
Show Gist options
  • Save tonyklawrence/c41d8dc8521a4de6c7ea1cfcebf15749 to your computer and use it in GitHub Desktop.
Save tonyklawrence/c41d8dc8521a4de6c7ea1cfcebf15749 to your computer and use it in GitHub Desktop.
Convert Starling CSV to FreeAgent CSV format
sed 1,2d sample.csv | awk 'BEGIN { FS=","; OFS=","; } {print $1,$5,$3}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment