How to write a shell script to find the greatest among three numbers ?

#!/bin/bash # # Linux Shell Scripting Tutorial 1.05r3, Summer-2002 # # Written by Vivek G. Gite <vivek@nixcraft.com> # modified by Jeffrin Jose T. <ahiliation@yahoo.co.in> # Latest version can be found at http://www.nixcraft.com/ # # Q2. Script to find out biggest number # # Algo: # 1) START: Take three nos as n1,n2,n3. # 2) Is …