复制/etc/profile至/tmp/目录[root@Contos7 tmp]#cp /etc/profile /tmp
删除/tmp/profile文件中的空白行
用查找替换命令删除/tmp/profile文件中的行首的空白字符
sed ‘s@^[[:space:]]+@@’ profile
执行前:
执行后:[root@Contos7 tmp]#sed 's@^[[space:]]\+@@' profile
复制/etc/profile至/tmp/目录[root@Contos7 tmp]#cp /etc/profile /tmp
删除/tmp/profile文件中的空白行
用查找替换命令删除/tmp/profile文件中的行首的空白字符
sed ‘s@^[[:space:]]+@@’ profile
执行前:
执行后:[root@Contos7 tmp]#sed 's@^[[space:]]\+@@' profile