我想使用 python for 循环或任何简单的方法httpd_
从输出中解析。chkconfig
[spatel@04 ~]$ /sbin/chkconfig --list| grep httpd_
httpd_A 0:off 1:off 2:on 3:on 4:on 5:on 6:off
httpd_B 0:off 1:off 2:off 3:on 4:on 5:on 6:off
httpd_C 0:off 1:off 2:on 3:on 4:on 5:on 6:off
我知道怎么做,bash
但我想要同样的东西python
。
[spatel@04 ~]$ for qw in `/sbin/chkconfig --list| grep httpd_ | awk '{print $1}'`
> do
> echo $qw
> done
httpd_A
httpd_B
httpd_C
如何在python中做到这一点?我的python版本是
[root@04 ~]# python -V
Python 2.4.3