it is saying " line 6: tf: command not found "Code:#!/bin/bash
#program to convert degrees cesius into degrees fahrenheit
#
echo " enter the temperature in degrees celsius "
read a
tf = $( echo "(( 9 * $a ) /5 ) + 32 " |bc )
echo " $a celsius = $tf fahrenheit "
#end

