match tab in sed
May 17th, 2012 by Lawrence David
to replace a tab in sed:
sed ‘s/<tab>//’
where <tab> is you typing CTRL-V followed by pressing TAB (thanks to atoztoa!).
alternatively:
sed ‘s/\\\t//’

May 17th, 2012 by Lawrence David
to replace a tab in sed:
sed ‘s/<tab>//’
where <tab> is you typing CTRL-V followed by pressing TAB (thanks to atoztoa!).
alternatively:
sed ‘s/\\\t//’