I am trying to remove non-ascii characters from a large text file. I googled around and found the following tr command, which works perfectly. However, I wish to use awk, because this command will go into my existing awk script. Would appreciate any help!
tr -cd '\11\12\15\40-\176' < InputFile > OutputFile