8 lines
238 B
Python
Executable File
8 lines
238 B
Python
Executable File
#!/home/arul/firefox-persistence-wrapper/venv/bin/python3
|
|
import sys
|
|
from charset_normalizer import cli
|
|
if __name__ == '__main__':
|
|
if sys.argv[0].endswith('.exe'):
|
|
sys.argv[0] = sys.argv[0][:-4]
|
|
sys.exit(cli.cli_detect())
|