复制/etc/profile至/tmp/目录用查找替换命令删除/tmp/profile文件中的空白行
时间:
2019-12-09 00:01:12
阅读:
187
评论:
收藏:
0
[点我收藏+]
复制/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/目录用查找替换命令删除/tmp/profile文件中的空白行
原文:https://blog.51cto.com/14613575/2456969