6 lines
102 B
Python
Executable file
6 lines
102 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from os import path
|
|
|
|
print(path.relpath(sys.argv[1], sys.argv[2]))
|