Open Maloute431 opened 2 days ago
The program checks if the tor bin exists in your path or in your builtin with the command command -v tor > /dev/null 2>&1 || { echo >&2 "error"; exit 1; }
which will use command -v
to lookup for the tor binary's path in your $PATH and writing the result to void with /dev/null, in case of error it would fail and log "error" in this case but in the code it's most likely to be "I require tor but..." and exit.
For debugging your case, can you try running command -v tor
and if there is no result adding it to your $PATH.
Tor is installed on my kali linux but it sauys that it is nt installed