美文网首页
在linux下判断当前的环境是不是在终端下运行的

在linux下判断当前的环境是不是在终端下运行的

作者: 崩芭大酱 | 来源:发表于2016-06-30 10:06 被阅读31次

    在linux下判断当前的环境是不是在终端下运行的

    #!/usr/bin/python
    # -*- coding: utf-8 -*-
    import os
    import re
    import sys
    
    
    def is_terminal(path=None):
        """Is true if the terminal is a real one
        Like the linux terminal console
    
        >>> is_terminal("/dev/tty0")
        True
    
        >>> is_terminal("/dev/ttyUSB0")
        False
    
        >>> is_terminal("/dev/ttyS0")
        False
    
        >>> is_terminal("/dev/tty")
        True
    
        >>> is_terminal("/dev/console")
        True
        """
        is_terminal = False
        try:
            ttyname = path or os.ttyname(sys.stdin.fileno())
            print(ttyname)
            is_tty = re.match("/dev/tty([0-9]|$)", ttyname) is not None
            is_console = ttyname == "/dev/console"
            is_terminal = is_tty or is_console
        except OSError:
            pass
        return is_terminal
    
    if __name__ == "__main__":
        result = is_terminal()
        print(result)
    

    相关文章

      网友评论

          本文标题:在linux下判断当前的环境是不是在终端下运行的

          本文链接:https://www.haomeiwen.com/subject/xggxjttx.html