标签: linux sed awk
我有一个文本文件(制表符分隔),我想在第1750960栏中用字符“0”替换“空格”。怎么做?
答案 0 :(得分:0)
如果你实际上在谈论第1750960号字符,这是一个很好的方式来实现它
echo $YOUR_LINE | sed 's|\(.\{1750959\}\).|\10|'
要在替换中使用\(和\)' take whatever is matched inside them and relates it back to \ 1`。
\(
\)' take whatever is matched inside them and relates it back to
我希望这会有所帮助