Add echo input line to calc()

This commit is contained in:
flyingscorpio@arch-desktop 2020-11-11 10:17:24 +01:00
parent d8d3ed5a3f
commit 20bfe89994

View file

@ -114,5 +114,6 @@ bye() {
calc() {
# Use python to make simple calculations, like 'calc 24/8'
echo -n "$* = "
python -c "print($*)"
}