mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-09-11 17:58:17 +00:00
10 lines
146 B
Python
10 lines
146 B
Python
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
import os
|
|
|
|
def main():
|
|
return os.system('open {app_path}')
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main()) |