Skip to content

Instantly share code, notes, and snippets.

@TMschar
Last active April 6, 2023 16:27
Show Gist options
  • Save TMschar/a6302b295ee0c3f1fbdddba51272277a to your computer and use it in GitHub Desktop.
Save TMschar/a6302b295ee0c3f1fbdddba51272277a to your computer and use it in GitHub Desktop.
Convert Nordea Account Stmt Export to Fortnox Check off Account https://support.fortnox.se/sv_SE/bokforing/stam-av-konto
awk -F ';' '{ if (NR == 1) { print "Datum" ";" "Ingående saldo-Beskrivning" ";" "Belopp" } else { gsub(/\//, "-", $1); print $1 ";" $5 ";" $2 } } END {print "Läses;Inte;In"}' input.csv > output.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment