摘要:
错误提示:"Warning:could not boot;Warning: /dev/root does not exist" 解决方法: 详见网址:http://www.cnblogs.com/lizhaoxian/p/Centos-root-does-not-exist.html 阅读全文
摘要:
sed -i -c -e '/^#/d'去掉注释行 sed -i -c -e '/^$/d'去掉空行 sed -i -c -e '/^$/d;/^#/'同时去掉空行和注释行 sed -i 's/^/HEAD&/g' passwd 在每行的头部增加HEAD sed 's/$/&TAIL/g' test 阅读全文