Skip to content

Instantly share code, notes, and snippets.

View cacology's full-sized avatar

cacology

View GitHub Profile
@cacology
cacology / apple-to-ledger.sh
Last active January 3, 2020 15:08
Apple Card accounts to ledger
#!/bin/bash
CUR_LEDGER=PUTYOURLEDGERFILEHEREFORAUTOMATICMATCHING!
FIELDS="date,payee,note,amount"
# convert to text: delicate based on how the PDF renders
pdftotext -layout "$1" - > "$1.txt"
# extract lines with transactions, / \d\d/
grep '^\d\d/\d\d.*\d\d$' "$1.txt" > "$1.transactions.txt"