Skip to content

Instantly share code, notes, and snippets.

@wangchen
Last active December 25, 2015 02:08
Show Gist options
  • Save wangchen/6899975 to your computer and use it in GitHub Desktop.
Save wangchen/6899975 to your computer and use it in GitHub Desktop.
Realpath in OS X implemented by python
alias realpath='python -c '\''import os,sys; print (os.path.abspath(sys.argv[1]) if len(sys.argv)>1 and os.path.exists(sys.argv[1]) else "Invalid path\nUsage: realpath <path>")'\'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment