复制/etc/profile至/tmp/目录用查找替换命令删除/tmp/profile文件中的空白行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了复制/etc/profile至/tmp/目录用查找替换命令删除/tmp/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
以上是关于复制/etc/profile至/tmp/目录用查找替换命令删除/tmp/profile文件中的空白行的主要内容,如果未能解决你的问题,请参考以下文章
Linux- 环境变量PATHcpmvcat--wc-more-less-tail
Linux脚本练习之script041-创建目录 `/tmp/scripts`,切换工作目录至此目录中,复制 `/etc/pam.d` 目录至当前目录,并重命名为 `test`。