Unix:删除空白字符的命令
当我执行以下 unix 命令时:
pwd | pbcopy
是否可以在命令中添加一些内容,以便复制到剪贴板的字符串没有任何尾随空格?
(仅供参考:我问的原因是因为当我通过管道将输出传输到 pbcopy 时,它会在末尾复制一个换行符,出于我的目的,我不希望这样做)
When I do the following unix command:
pwd | pbcopy
is there something I can add to the command so that the string copied to my clipboard does not have any trailing whitespace?
(fyi: The reason I ask is because when I pipe the output to pbcopy, it copies a newline character at the end, which for my purposes, I don't want)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过以下方式实现该效果:
You can achieve that effect with: