Add calc function

This commit is contained in:
flyingscorpio@arch-desktop 2020-11-09 13:15:23 +01:00
parent 82611365d4
commit ef1811c3ac

View file

@ -94,3 +94,8 @@ bye() {
cd || exit 1
git-summary -d
}
calc() {
# Use python to make simple calculations, like 'calc 24/8'
python -c "print($*)"
}