Write a Python program to get the effective group id, effective user id, real group id, and a list of supplemental group ids associated with the current process.

Write a Python program to get the effective group id, effective user id, real group id, and a list of supplemental group ids associated with the current process.

1
2
3
4
5
6
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()

Final output

Leave a Comment