#!/bin/bash
read -p "Enter degree celsius temperature: " C
F=$(1.8*{$C})+32
echo The temperature in Fahrenheit is $F
in above shell script i am trying to convert temp from Celsius to Fahrenheit
getting this error
/code/source.sh: line 3: 1.8{32}: command not found The temperature in Fahrenheit is +32*
Ans should be 89