Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
tr '\t' '&' < /input/file
[gray]# or[/gray]
sed 's/\t/\&/g' /input/file
[gray]# or[/gray]
awk '{gsub(/\t/,"\\&")}1' /input/file
[gray]# or[/gray]
perl -pe 's/\t/\&/g' /input/file
[gray]# or[/gray]
ruby -pe 'gsub /\t/,"&"' /input/file
[gray]# or[/gray]
while read l; do echo "${l//$'\t'/&}"; done < /input/file