夏天,他把手中的魔法棒轻轻一挥,带给咱们一片充满活力的蓝色。你瞧,蓝蓝的天空飘着朵朵白云,远处,蔚蓝的大海在夏风的吹拂下,卷起层层浪花。
本文实例讲述了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程序设计有所帮助。
到此这篇关于python获得linux下所有挂载点(mount points)的方法就介绍到这了。不要生气要争气,不要看破要突破,不要嫉妒要欣赏,不要托延要积极,不要心动要行动。更多相关python获得linux下所有挂载点(mount points)的方法内容请查看相关栏目,小编编辑不易,再次感谢大家的支持!