sed删除行首空格HDR2013-01-23 如果确认只是空格: sed 's/^ *//' infile 如果判断不清行首是空格还是制表符的话, 还可以用这个: sed 's/^[[:space:]]*//' infile