首页 > Python资料 博客日记

Python os.tcgetpgrp()方法

2023-08-08 13:34:06Python资料围观222

这篇文章介绍了Python os.tcgetpgrp()方法,分享给大家做个参考,收藏Python资料网收获更多编程知识

Python的tcgetpgrp()方法返回与fd给出的终端关联的进程组(由os.open()返回的打开的文件描述符)。

语法

以下是tcgetpgrp()方法的语法 -

os.tcgetpgrp(fd)

参数

  • fd - 这是文件描述符。

返回值

此方法返回进程组。

示例

以下示例显示了tcgetpgrp()方法的用法。

# !/usr/bin/python3
import os, sys

# Showing current directory 
print ("Current working dir :%s" %os.getcwd())

# Changing dir to /dev/tty
fd = os.open("/dev/tty",os.O_RDONLY)
f = os.tcgetpgrp(fd)

# Showing the process group
print ("the process group associated is: ")
print (f)

os.close(fd)
print ("Closed the file successfully!!")

当运行上述程序时,它将在/tmp目录中创建一个符号链接,如下所示: -

Current working dir is :/tmp
the process group associated is:
2670
Closed the file successfully!!

版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!

标签:

相关文章

本站推荐