Python3 os.tcgetpgrp()方法

2019-10-16 23:09:20
tcsetpgrp()方法返回由 fd 給出與該終端相關聯的行程群組 (通過 os.open() 返回一個開啟的檔案描述符)

語法

以下是 tcsetpgrp()方法的語法:
os.tcgetpgrp(fd)

引數

  • fd -- 這是在檔案描述符

返回值

此方法返回行程群組

範例

下面的範例顯示 tcsetpgrp()方法的使用。
# !/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!!")
當我們執行上面的程式,它會產生以下結果:
Current working dir is :/tmp
the process group associated is:
2670
Closed the file successfully!!