删除文本文件中的前导空格
我有一堆文本文件,尽管它们在行首都有空格,
例如
testing 123
download
upload
最好
testing 123
download
upload
使用 grep 等实用程序。
I have a bunch of texts files although they all have spaces at the beginning of lines
e.g.
testing 123
download
upload
would be
testing 123
download
upload
Preferably using a utility such as grep etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
sed
这应该适用于 Linux 和您的 GNUWin 工具包。
You can use
sed
This should work with Linux and your GNUWin Toolkit.