mirror of
https://github.com/9001/copyparty.git
synced 2025-10-23 16:14:10 +00:00
10 lines
122 B
Python
10 lines
122 B
Python
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
"""
|
|
example that just prints the file extension
|
|
"""
|
|
|
|
print(sys.argv[1].split(".")[-1])
|