How can I use the UNIX shell to count the number of times a letter appears in a text file?

后端 未结 10 587
清酒与你
清酒与你 2021-02-03 19:07

I have a few text files and I\'d like to count how many times a letter appears in each?

Specifically, I\'d like to use the UNIX shell to do this, in the form of: cat fil

10条回答
  •  佛祖请我去吃肉
    2021-02-03 19:51

    awk '{ printf "%s\n", gsub( "ur_char", "oth_char", $0 ) }' < your_file_name > output.txt
    

    you can add count of current line number to get the line numbers in awk also.

提交回复
热议问题