Time pass to be honest,may work as a reference later,I am not sure.
#!/usr/bin/bashecho "Please enter a sentence"read sentencefor word in $(echo $sentence|xargs -n 1 |sort -u )do#occurance=$(echo $sentence | grep -i -o "$word" | wc -w)echo -e "$word-$(echo $sentence | grep -i -o "$word" | wc -w)"done
No comments:
Post a Comment