W.A.S.S to remove colons from a colon – separated record.
Program
# W.A.S.S to remove colons from a colon – separated record.
#07MCG20
echo -e "Enter the file name: \c"
read fnm
cat $fnm | tr ":" " " > temp.txt
cat temp.txt > $fnm
rm temp.txt
Output
Befoe
cat temp3.txt
Narendra : Agrawal : mca : svit
Gujarat : university
sh colon.sh
After
cat temp3.txt
Narendra Agrawal mca svit
Gujarat university