#string while true do echo "Enter a choice" echo "1) Compare two strings" echo "2) concatenate two strings" echo "3) length of string" echo "4) Count occurence of string and word from a file" echo "5) reverse a string" echo "6) Put a string words in an array" read n case $n in 1) echo "enter 2 strings " read s read s2 if [ $s = $s2 ] then echo "Strings are equal" else echo "Strings are not equal" if [ $s \< $s2 ] then echo "String $s comes first" else echo "String $s2 comes first" fi fi ;; 2) echo "enter 2 strings " read s read s2 s3="$s $s2" echo $s3 ;; 3)echo "enter a string" read s s3=` expr length $s ` echo "Length is $s3" ;; 4) echo "enter a string" read s echo "enter a word to search in string" read search_word s2=` echo $s | grep -o $search_word | wc -l ` echo ...
this is a net web blog journal diary that is formed and made by a Indian student for faculty,college kids,children and youngsters as a gift for you to hold and carry everywhere and everyplace around the globe.This journal is completely and totally free from price to use and is extremely easy to use and very easy to understand.