python获得linux下所有挂载点(mount points)的方法
本文实例讲述了python获得linux下所有挂载点(mount points)的方法。分享给大家供大家参考。具体实现方法如下:
# execute the external "mount" command # and parse the output. import commands mount = commands.getoutput('mount -v') lines = mount.split('\n') points = map(lambda line: line.split()[2], lines) print points
希望本文所述对大家的Python程序设计有所帮助。
相关推荐
heheeheh 2020-06-06
TaoTaoFu 2020-06-04
wkwanglei 2020-05-26
suosuo 2020-05-15
LuoXinLoves 2020-05-11
benico 2020-04-26
姚强 2020-04-06
xhpscdx 2020-03-06
小惠 2013-06-27
lovelily 2013-04-01
拿什么来拯救自己 2013-07-20
杨友山 2019-12-25
jackalwb 2019-12-24
akcsdno 2019-12-18
xinlugang 2019-12-11
DEPHI 2013-08-23
技术老炮儿 2014-02-28