DEV Community

Cover image for Quick Command Line Calculator in One Line of Code
Nathan Kallman
Nathan Kallman

Posted on • Edited on • Originally published at kallmanation.com

1

Quick Command Line Calculator in One Line of Code

I will admit I'm currently a bit of a complete terminal rat. I use Neovim daily inside of tmux. My tests are run from the terminal. I use git from the terminal. Deploys and releases are done in my terminal. I'll even open web pages with Mac's open command.

So I asked myself: why would I open a separate app to make quick calculations when I have a perfectly good terminal blinking right in front of me? I made a little command to "solve" my "problem" and now I've decided to inflict your eyes with my code.

c() { echo "$@" | bc -l; }

The bc command on its own enters an interactive calculator mode. Which is nice but not what I wanted for quick arithmetic. So I use echo to pipe my calculation ("$@" refers to all the arguments given to this function) into bc and have the results calculated and printed with an immediate return to my normal terminal. For fun I also threw in the -l flag which gives me access to things like sine and cosine (but I cannot say I've really used them). Named it the shortest mnemonic I could think of, c for calculator, and I was done.

AWS Q Developer image

Your AI Code Assistant

Implement features, document your code, or refactor your projects.
Built to handle large projects, Amazon Q Developer works alongside you from idea to production code.

Get started free in your IDE

Top comments (0)

Eliminate Context Switching and Maximize Productivity

Pieces.app

Pieces Copilot is your personalized workflow assistant, working alongside your favorite apps. Ask questions about entire repositories, generate contextualized code, save and reuse useful snippets, and streamline your development process.

Learn more

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay