>> os.system("ifconfig eth0 | awk" />

python实现获取服务器IP地址

发布时间:2019-09-07 08:12:04编辑:auto阅读(2451)

    第一种:

    #!/usr/bin/env python

    import  os
    ip=os.popen("ifconfig eth0 | awk -F [:' ']+ 'NR==2{print $4}'")

    print ip.readline()


    第二种:

    >>> os.system("ifconfig eth0 | awk -F [:' ']+ 'NR==2{print $4}'")


    想问问:python里有过滤字符的命令吗,就像shell中的grep的效果那样~

关键字