dotfiles/.local/bin/scripts/=
2022-09-27 22:08:48 +02:00

5 lines
252 B
Bash
Executable file

#!/bin/bash -e
# Shortcut for mathematical calculations
# Converts german numbers such as 1.000,5
calc="$(echo "$@" | sed -e 's/p/+/g' -e 's/\.\(.*,\)/\1/g' -e 's/,/./g' -e 's/x/*/g' -e 's/m/-/g')"
bc -l <<<"scale=10;$calc" | sed 's/\(\..*\)0\+$/\10/'