Tag Archives for Basics in Shell Programming

Occurence of vowel charaters

# Program to count no of occurence of vowel charaters echo Enter String read string Len=`expr length $string` count=0 i=1 while [ $i -le $Len ] do char=`expr substr $string $i 1` if [ $char = a -o $char = … Continue reading

01. June 2009 by Jishnu
Categories: Shell Scripting | Tags: , | Leave a comment

← Older posts