We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The script seems to have unspecified dependencies, that are at unsatisfied at least on a typical Debian Testing installation.
For instance, this syntax would not work:
while [[ $(pgrep -f "bash kmr-" -c) > $(( $THREADS - 1 )) ]];
Replacing it with this worked.
while [ $(pgrep -f "bash kmr-" -c) -ge $THREADS ];
Same here, this didn’t work:
if [[ "breakpoints_mode"==TRUE ]]; then
But this worked:
if [ "breakpoints_mode" = TRUE ]; then
On the last line there is an invocation of:
"$(urldecode $PATHFILE/$TARGET)"
What is this urldecode? The command does not exist in my system, and apt-cache search urldecode finds nothing useful for it.
apt-cache search urldecode
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The script seems to have unspecified dependencies, that are at unsatisfied at least on a typical Debian Testing installation.
For instance, this syntax would not work:
Replacing it with this worked.
Same here, this didn’t work:
But this worked:
On the last line there is an invocation of:
What is this urldecode? The command does not exist in my system, and
apt-cache search urldecode
finds nothing useful for it.The text was updated successfully, but these errors were encountered: