1

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

例如

 testing 123
 download
 upload

将会

testing 123
download
upload

最好使用 grep 等实用程序。

4

3 回答 3

0
perl -pi -e 's/^\s+//' yourfilenamehere
于 2011-06-03T13:20:44.000 回答
0
sed -i -e's/^\s*//' yourfilenamehere
于 2011-06-03T13:24:27.690 回答
0

您可以使用sed

sed 's/^ *//' file

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

echo "     Line starting with spaces" | sed 's/^[ \t]*//'
于 2011-06-03T13:25:37.163 回答