Write a shell script to convert all the lower case letters of a (text) file to upper case. February 17, 2017March 27, 2017 ignougroup ************************* if test $# -ne2 then echo Invalid number of parameters else cat $1 tr'[a-z]’ ‘[A-Z]’ **************************Related