Created
October 1, 2012 19:08
-
-
Save rschildmeijer/3813761 to your computer and use it in GitHub Desktop.
calculate the swedish capital insurance tax
This file contains 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
curl -silent "https://www.riksgalden.se/sv/omriksgalden/statsskulden/aktuella-siffror/statslanerantan/"|grep -i -A2 "Medelvärde hittills i år"|tail -n1|awk 'BEGIN{FS="[<|>]"} {gsub(",", "."); printf("%f\n", $7*0.27)}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment