mirror of
https://github.com/r4sas/proxychecker
synced 2025-01-17 10:10:06 +00:00
9 lines
160 B
Bash
Executable File
9 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
findpy3=$(which python3)
|
|
if [ -z $findpy3 ]; then
|
|
echo "Can't find 'pyhton3' installed. That script needs it!";
|
|
exit 1;
|
|
fi
|
|
|
|
$findpy3 bin/checker.py |