Skip to content

Instantly share code, notes, and snippets.

@sujayy1983
Last active August 29, 2015 14:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sujayy1983/ae12ce225690c109b7fd to your computer and use it in GitHub Desktop.
Save sujayy1983/ae12ce225690c109b7fd to your computer and use it in GitHub Desktop.
"""
Description: Get current username. Useful in automation.
"""
#Approach1
import os
import pwd
pwd.getpwuid( os.getuid() ).pw_name
#Approach2
import getpass
print getpass.getuser()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment