MIT-Curricular/OS/bash/Week3/q4.sh
2025-02-07 01:25:19 +05:30

8 lines
130 B
Bash
Executable file

#!/bin/sh
echo "Enter Basic Salary"
read basic
echo "Enter TA"
read TA
GA=$(echo "$basic + $TA + 0.1*$basic" | bc -l)
echo "$GA"