Created
March 29, 2019 11:48
-
-
Save tonyklawrence/c41d8dc8521a4de6c7ea1cfcebf15749 to your computer and use it in GitHub Desktop.
Convert Starling CSV to FreeAgent CSV format
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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