11 lines
320 B
Bash
Executable File
11 lines
320 B
Bash
Executable File
#!/bin/sh
|
|
'''exec' "/Users/ashutoshnayak/Learning and Work/linkedIn_auto_jobs_applier_with_AI/JobApply/bin/python3" "$0" "$@"
|
|
' '''
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from tqdm.cli import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|