Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: SerJel
  • Content: Threads
  • Order by date
  1. SerJel

    letter frequency count

    Ez, can anyboby help me to write a code in AWk, which will count the letter frequency in text. My code: #!/usr/bin/awk -f { for (i = 1; i <= NF; i++) freq[$i]++ } END { for (words in freq) split(words,word,""); for (s in word) #if (word[s]=word[s])...

Part and Inventory Search

Back
Top