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