relative_to.py (102B)
1 #!/usr/bin/env python3 2 3 import sys 4 from os import path 5 6 print(path.relpath(sys.argv[1], sys.argv[2]))