How to replace control characters with Sed

Replace control character ^A with tab character: ```bash sed -e "s/$(echo -e \\001)/\\echo -e '\t'/g" file.txt ``` See [Wikipedia](http://en.wikipedia.org/wiki/ASCII#ASCII_control_characters) for list of control characters.