Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • I always have one window in screen just running Python. Commented Jun 15, 2012 at 18:54
  • 1
    pythonpy (github.com/russell91/pythonpy) is a nice way to do this and other things in python syntax without having to fire up an interactive shell: py '3.2 * 5' => 16 Commented Sep 13, 2014 at 6:30
  • I like python but it's start up time becomes important if you just want to add two numbers in a few places of your bash script Commented Sep 17, 2017 at 10:30
  • @ndemou I said "interactive" calculator. Although it's also worth noting that at some point if you are doing complex enough things in a script, sanity dictates you use something other than bash (like Python). Commented Sep 18, 2017 at 20:20