2018年1月10日 星期三

Python: Find group id, user id, real group id, supplemental group ids associated with the current process

Python: Find group id, user id, real group id, supplemental group ids associated with the current process

Python Basic: Exercise-104 with Solution

Write a Python program to get the effective group id, effective user id, real group id, a list of supplemental group ids associated with the current process.
Note: Availability: Unix.
Sample Solution:-

import os
print("\nEffective group id: ",os.getegid())
print("Effective user id: ",os.geteuid())
print("Real group id: ",os.getgid())
print("List of supplemental group ids: ",os.getgroups())
print()

Sample Output:
Effective group id:  1007                                          
Effective user id:  1006                                           
Real group id:  1007                                               
List of supplemental group ids:  [1007]  

沒有留言:

張貼留言

MQTT WS HMI 與 Wokwi ESP32 連線的資訊透過HiveMQ

MQTT WS HMI 與 Wokwi ESP32 連線的資訊透過HiveMQ     https://console.hivemq.cloud/clusters 當您進入 HiveMQ Cloud Console 的 Clusters 頁面時,您的目標是取得能讓 MQTT W...