5 复制/etc/profile至/tmp目录,用查找替换命令删除/tmp/profile文件中的行首空白字符
(1) cp -a /etc/profile /tmp;复制文件到/tmp目录;
(2) vim profile进入扩展命令模式,输入%s@@^[[:space:]]+@@g
%全文匹配,^[[:space:]]+搜索条件,已空格开头1个及以上,替换成空内容;
(3) sed -ri‘s@^[[:sapce:]]+([^[:space:]].*)@\1@g’profile采用流编辑器,也可以实现;