Hello! I need to replace html codes with ascii chars, so for 'IJaaaaK' output should be: 'IJaaaaK' Could you help with this ? What I have so far is this... echo 'IJaaaaK' | awk '{ print (gensub("&#([0-9]+);","\ \1","g")) }'