Difference between revisions of "importing paypal csv into gnucash"

From thelinuxwiki
Jump to: navigation, search
 
Line 1: Line 1:
 
script to format the paypal csv
 
script to format the paypal csv
  
<p>cat Download.csv | sed -e '1d' | awk -F "\",\"" '{ for (i=1; i<=NF; i++); printf substr($1,2) "," $7 "," $12 "," "Item ID " $16 " " $15 "\n" ; if ($8!="0.00") printf substr($1,2) "," $8 "," $12 "," "paypal fee for " $16 "\n"}' > paypal_formatted.csv
+
 
 +
cat Download.csv | sed -e '1d' | awk -F "\",\"" '{ for (i=1; i<=NF; i++); printf substr($1,2) "," $7 "," $12 "," "\"Item ID " $16 " " $15 "\"\n" ; if ($8!="0.00") printf substr($1,2) "," $8 "," $12 "," "\"paypal fee for " $16 "\"\n"}'  
  
 
[[category:gnucash]]
 
[[category:gnucash]]

Latest revision as of 21:17, 11 October 2013

script to format the paypal csv


cat Download.csv | sed -e '1d' | awk -F "\",\"" '{ for (i=1; i<=NF; i++); printf substr($1,2) "," $7 "," $12 "," "\"Item ID " $16 " " $15 "\"\n" ; if ($8!="0.00") printf substr($1,2) "," $8 "," $12 "," "\"paypal fee for " $16 "\"\n"}'