Skip to content
New issue

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

Requirements? #15

Open
bisqwit opened this issue Dec 25, 2018 · 0 comments
Open

Requirements? #15

bisqwit opened this issue Dec 25, 2018 · 0 comments

Comments

@bisqwit
Copy link

bisqwit commented Dec 25, 2018

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant