Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Yet another simple command line Calculator' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Yet another simple command line Calculator
Authored by: Anonymous on Aug 09, '06 09:52:52AM
Of course, if you're using bash anyway, you can just go ahead and use

$((expression))

and it even takes variables directly, allowing things like incrementing, both pre

$((++varname))

and post

$((varname++))



[ Reply to This | # ]