linux自学_shell脚本for详解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux自学_shell脚本for详解相关的知识,希望对你有一定的参考价值。
for 循环 一般把变量都轮询一遍去执行一些任务
如开机启动程序精简
for cheng in `chkconfig --list|grep 3:on |awk ‘{print $1}’`
do
chkconfig $cheng off
done
for cheng in ssh crond
do
chkconfig $cheng on
done
以上是关于linux自学_shell脚本for详解的主要内容,如果未能解决你的问题,请参考以下文章