Skip to content

Instantly share code, notes, and snippets.

@JoshMock
Created June 6, 2014 16:31
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 JoshMock/f5be51f41cb9024df6ff to your computer and use it in GitHub Desktop.
Save JoshMock/f5be51f41cb9024df6ff to your computer and use it in GitHub Desktop.
Get process's username
function getUsername () {
var homeDir = process.env['HOME'].split('/');
return homeDir[homeDir.length - 1];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment