Celsius to Fahrenheit

Convert temperature from Celsius to Fahrenheit using the standard formula.

Code

General
echo $((celsius * 9 / 5 + 32))

Parameters

Temperature in Celsius

Server

More Bash Snippets