git @ Cat's Eye Technologies realpath / master script / realpath
master

Tree @master (Download .tar.gz)

realpath @masterraw · history · blame

1
2
3
4
5
6
7
8
9
#!/usr/bin/env python3

# Written by Chris Pressey of Cat's Eye Technologies.
# This work is in the public domain; see UNLICENSE for more information.

import os
import sys

print(os.path.realpath(sys.argv[1]))