删除文本文件中的前导空格

发布于 2024-11-13 08:59:49 字数 184 浏览 2 评论 0原文

我有一堆文本文件,尽管它们在行首都有空格,

例如

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

在风中等你 2024-11-20 08:59:49
sed -i -e's/^\s*//' yourfilenamehere
sed -i -e's/^\s*//' yourfilenamehere
赤濁 2024-11-20 08:59:49

您可以使用 sed

sed 's/^ *//' file

这应该适用于 Linux 和您的 GNUWin 工具包。

echo "     Line starting with spaces" | sed 's/^[ \t]*//'

You can use sed

sed 's/^ *//' file

This should work with Linux and your GNUWin Toolkit.

echo "     Line starting with spaces" | sed 's/^[ \t]*//'
一场信仰旅途 2024-11-20 08:59:49
perl -pi -e 's/^\s+//' yourfilenamehere
perl -pi -e 's/^\s+//' yourfilenamehere
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文