行頭にスペースがありますが、テキストファイルがたくさんあります
例えば
testing 123
download
upload
だろう
testing 123
download
upload
できればgrepなどのユーティリティを使用してください。
perl -pi -e 's/^\s+//' yourfilenamehere
sed -i -e's/^\s*//' yourfilenamehere
使用できますsed
sed 's/^ *//' file
これは Linux と GNUWin Toolkit で動作するはずです。
echo " Line starting with spaces" | sed 's/^[ \t]*//'