Answers for "sed replace space by tab"

0

sed tab to space

sed 's/t/ /g' filename
Posted by: Guest on January-29-2021
0

replace tab sed

sed -i.bak $'s/t/  /' file.txt	#replace tab with sed command
Posted by: Guest on November-26-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language