mirror of
https://github.com/r4sas/proxychecker
synced 2025-02-05 03:14:32 +00:00
9 lines
160 B
Plaintext
9 lines
160 B
Plaintext
|
#!/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
|