如何在 OS X 上使用 sed 插入制表符?
我已经尝试过:
echo -e "egg\t \t\t salad" | sed -E 's/[[:blank:]]+/\t/g'
其结果是:
eggtsalad
并且...
echo -e "egg\t \t\t salad" | sed -E 's/[[:blank:]]+/\\t/g'
其结果是:
egg\tsalad
我想要什么:
egg salad
I have tried:
echo -e "egg\t \t\t salad" | sed -E 's/[[:blank:]]+/\t/g'
Which results in:
eggtsalad
And...
echo -e "egg\t \t\t salad" | sed -E 's/[[:blank:]]+/\\t/g'
Which results in:
egg\tsalad
What I would like:
egg salad
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
尝试 awk
try awk
osx 上 tab 的解决方法是使用
"\ "
,即转义字符后跟四个空格。如果您试图找到模式的最后一个实例,请说
" })};"
并在该模式后的换行符上插入文件,您的sed
命令osx 看起来像这样:标记使其不清楚:转义字符后面必须跟有四个空格,以便 sed 能够在 osx 上注册制表符。
如果您想要查找的模式前面有两个空格,那么同样的技巧也适用,并且我想它也适用于查找前面有任意数量的空格的模式。
A workaround for tab on osx is to use
"\ "
, an escape char followed by four spaces.If you are trying to find the last instance of a pattern, say a
" })};"
and insert a file on a newline after that pattern, yoursed
command on osx would look like this:The markup makes it unclear: the escape char must be followed by four spaces in order for
sed
to register a tab character on osx.The same trick works if the pattern you want to find is preceded by two spaces, and I imagine it will work for finding a pattern preceded by any number of spaces as well.
尝试:Ctrl+V,然后按Tab。
Try: Ctrl+V and then press Tab.
使用 ANSI-C 样式引用:
s/foo/\t/'$'string'
因此,在您的示例中,只需添加
$
:Use ANSI-C style quoting:
s/foo/\t/'$'string'
So in your example, simply add a
$
:OSX 的
sed
仅理解模式中的根本不理解\t
,而不理解替换中的\t
\t
,因为它本质上是 1982 年左右留下的古老的 4.2BSDsed
。使用文本制表符(在bash
和vim
中为Ctrl
+V
、Tab
>),或者安装 GNU coreutils 以获得更合理的 sed。OSX's
sed
only understandsdoesn't understand\t
in the pattern, not in the replacement\t
at all, since it's essentially the ancient 4.2BSDsed
left over from 1982 or thenabouts. Use a literal tab (which inbash
andvim
isCtrl
+V
,Tab
), or install GNUcoreutils
to get a more reasonablesed
.另一种选择是使用
$(printf '\t')
插入制表符,例如:Another option is to use
$(printf '\t')
to insert a tab, e.g.: