GNU Parallel facing silent exit and invalid option error The 2019 Stack Overflow Developer...
Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?
Working through the single responsibility principle (SRP) in Python when calls are expensive
How to pronounce 1ターン?
How did passengers keep warm on sail ships?
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
Do warforged have souls?
Derivation tree not rendering
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
A pet rabbit called Belle
Why can't wing-mounted spoilers be used to steepen approaches?
What is this lever in Argentinian toilets?
Road tyres vs "Street" tyres for charity ride on MTB Tandem
How can I protect witches in combat who wear limited clothing?
Match Roman Numerals
Relations between two reciprocal partial derivatives?
Why can't devices on different VLANs, but on the same subnet, communicate?
Semisimplicity of the category of coherent sheaves?
Create an outline of font
What can I do if neighbor is blocking my solar panels intentionally?
Are spiders unable to hurt humans, especially very small spiders?
Did the new image of black hole confirm the general theory of relativity?
Are my PIs rude or am I just being too sensitive?
how can a perfect fourth interval be considered either consonant or dissonant?
Windows 10: How to Lock (not sleep) laptop on lid close?
GNU Parallel facing silent exit and invalid option error
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election ResultsPoor Man's GNU Parallel implemented in ksh?Can GNU Parallel execute more parallel processes?Parallelise rsync using GNU ParallelSet apt-get options to tolerate harmless 'dpkg --force-conflicts' kludge?BCP neither gives results nor outputs anything when using valid statements but it does throw errors when passing invalid parametersGNU parallel and basefile outside of pwd?GNU Parallel to process multiple files in parallel in Unix with bashGrep: repetition-operator operand invalid in GNU Parallel callGNU Parallel: startup script on each nodegnu parallel exit process with timeout
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I tried performing the full installation from: http://git.savannah.gnu.org/cgit/parallel.git/tree/README
The installation was successful. It's working well when installed on Mac OS but on Amazon Linux (RHEL64) I am facing below issues:
On running just
parallel
the command exits silently.
dev-dsk % parallel
dev-dsk %
On running any command even
parallel --version
gives following error:
dev-dsk % parallel --version
parallel: invalid option -- '-'
parallel [OPTIONS] command -- arguments
for each argument, run command with argument, in parallel
parallel [OPTIONS] -- commands
run specified commands in parallel
Same error with running
parallel --gnu
.
IMO, there is no conflict with NO conflict with Tollef's parallel of moreutils package as moreutils doesn't exit on my machine.
Please help me understanding how to make GNU Parallel work on RHEL64?
linux rhel gnu gnu-parallel amazon-linux
New contributor
add a comment |
I tried performing the full installation from: http://git.savannah.gnu.org/cgit/parallel.git/tree/README
The installation was successful. It's working well when installed on Mac OS but on Amazon Linux (RHEL64) I am facing below issues:
On running just
parallel
the command exits silently.
dev-dsk % parallel
dev-dsk %
On running any command even
parallel --version
gives following error:
dev-dsk % parallel --version
parallel: invalid option -- '-'
parallel [OPTIONS] command -- arguments
for each argument, run command with argument, in parallel
parallel [OPTIONS] -- commands
run specified commands in parallel
Same error with running
parallel --gnu
.
IMO, there is no conflict with NO conflict with Tollef's parallel of moreutils package as moreutils doesn't exit on my machine.
Please help me understanding how to make GNU Parallel work on RHEL64?
linux rhel gnu gnu-parallel amazon-linux
New contributor
1
Note that theman
page does not prove there's no conflict. I don't know what shell you use, but withbash
you can run the commandtype -path parallel
and it'll tell you what version ofparallel
you are running.
– Stephen Harris
30 mins ago
add a comment |
I tried performing the full installation from: http://git.savannah.gnu.org/cgit/parallel.git/tree/README
The installation was successful. It's working well when installed on Mac OS but on Amazon Linux (RHEL64) I am facing below issues:
On running just
parallel
the command exits silently.
dev-dsk % parallel
dev-dsk %
On running any command even
parallel --version
gives following error:
dev-dsk % parallel --version
parallel: invalid option -- '-'
parallel [OPTIONS] command -- arguments
for each argument, run command with argument, in parallel
parallel [OPTIONS] -- commands
run specified commands in parallel
Same error with running
parallel --gnu
.
IMO, there is no conflict with NO conflict with Tollef's parallel of moreutils package as moreutils doesn't exit on my machine.
Please help me understanding how to make GNU Parallel work on RHEL64?
linux rhel gnu gnu-parallel amazon-linux
New contributor
I tried performing the full installation from: http://git.savannah.gnu.org/cgit/parallel.git/tree/README
The installation was successful. It's working well when installed on Mac OS but on Amazon Linux (RHEL64) I am facing below issues:
On running just
parallel
the command exits silently.
dev-dsk % parallel
dev-dsk %
On running any command even
parallel --version
gives following error:
dev-dsk % parallel --version
parallel: invalid option -- '-'
parallel [OPTIONS] command -- arguments
for each argument, run command with argument, in parallel
parallel [OPTIONS] -- commands
run specified commands in parallel
Same error with running
parallel --gnu
.
IMO, there is no conflict with NO conflict with Tollef's parallel of moreutils package as moreutils doesn't exit on my machine.
Please help me understanding how to make GNU Parallel work on RHEL64?
linux rhel gnu gnu-parallel amazon-linux
linux rhel gnu gnu-parallel amazon-linux
New contributor
New contributor
edited 9 mins ago
bit_cracker007
New contributor
asked 1 hour ago
bit_cracker007bit_cracker007
1013
1013
New contributor
New contributor
1
Note that theman
page does not prove there's no conflict. I don't know what shell you use, but withbash
you can run the commandtype -path parallel
and it'll tell you what version ofparallel
you are running.
– Stephen Harris
30 mins ago
add a comment |
1
Note that theman
page does not prove there's no conflict. I don't know what shell you use, but withbash
you can run the commandtype -path parallel
and it'll tell you what version ofparallel
you are running.
– Stephen Harris
30 mins ago
1
1
Note that the
man
page does not prove there's no conflict. I don't know what shell you use, but with bash
you can run the command type -path parallel
and it'll tell you what version of parallel
you are running.– Stephen Harris
30 mins ago
Note that the
man
page does not prove there's no conflict. I don't know what shell you use, but with bash
you can run the command type -path parallel
and it'll tell you what version of parallel
you are running.– Stephen Harris
30 mins ago
add a comment |
1 Answer
1
active
oldest
votes
Not sure why it was not working as for me there was just one executable named parallel in my system path.
But I was able to fix it as below:
- Run
whereis parallel
. This gives all the paths where executables named parallel is present. For my case there was just one path/usr/local/bin/parallel
. Running using this path works just fine. - You can add an alias for this in
~/.bashrc
or~/.zshrc
file likealias parallel='/usr/local/bin/parallel'
And now parallel
works like charm.
dev-dsk % parallel --version
GNU parallel 20190322
Copyright (C) 2007-2019 Ole Tange and Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
GNU parallel comes with no warranty.
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
bit_cracker007 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f512332%2fgnu-parallel-facing-silent-exit-and-invalid-option-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Not sure why it was not working as for me there was just one executable named parallel in my system path.
But I was able to fix it as below:
- Run
whereis parallel
. This gives all the paths where executables named parallel is present. For my case there was just one path/usr/local/bin/parallel
. Running using this path works just fine. - You can add an alias for this in
~/.bashrc
or~/.zshrc
file likealias parallel='/usr/local/bin/parallel'
And now parallel
works like charm.
dev-dsk % parallel --version
GNU parallel 20190322
Copyright (C) 2007-2019 Ole Tange and Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
GNU parallel comes with no warranty.
New contributor
add a comment |
Not sure why it was not working as for me there was just one executable named parallel in my system path.
But I was able to fix it as below:
- Run
whereis parallel
. This gives all the paths where executables named parallel is present. For my case there was just one path/usr/local/bin/parallel
. Running using this path works just fine. - You can add an alias for this in
~/.bashrc
or~/.zshrc
file likealias parallel='/usr/local/bin/parallel'
And now parallel
works like charm.
dev-dsk % parallel --version
GNU parallel 20190322
Copyright (C) 2007-2019 Ole Tange and Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
GNU parallel comes with no warranty.
New contributor
add a comment |
Not sure why it was not working as for me there was just one executable named parallel in my system path.
But I was able to fix it as below:
- Run
whereis parallel
. This gives all the paths where executables named parallel is present. For my case there was just one path/usr/local/bin/parallel
. Running using this path works just fine. - You can add an alias for this in
~/.bashrc
or~/.zshrc
file likealias parallel='/usr/local/bin/parallel'
And now parallel
works like charm.
dev-dsk % parallel --version
GNU parallel 20190322
Copyright (C) 2007-2019 Ole Tange and Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
GNU parallel comes with no warranty.
New contributor
Not sure why it was not working as for me there was just one executable named parallel in my system path.
But I was able to fix it as below:
- Run
whereis parallel
. This gives all the paths where executables named parallel is present. For my case there was just one path/usr/local/bin/parallel
. Running using this path works just fine. - You can add an alias for this in
~/.bashrc
or~/.zshrc
file likealias parallel='/usr/local/bin/parallel'
And now parallel
works like charm.
dev-dsk % parallel --version
GNU parallel 20190322
Copyright (C) 2007-2019 Ole Tange and Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
GNU parallel comes with no warranty.
New contributor
New contributor
answered 10 mins ago
bit_cracker007bit_cracker007
1013
1013
New contributor
New contributor
add a comment |
add a comment |
bit_cracker007 is a new contributor. Be nice, and check out our Code of Conduct.
bit_cracker007 is a new contributor. Be nice, and check out our Code of Conduct.
bit_cracker007 is a new contributor. Be nice, and check out our Code of Conduct.
bit_cracker007 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f512332%2fgnu-parallel-facing-silent-exit-and-invalid-option-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Note that the
man
page does not prove there's no conflict. I don't know what shell you use, but withbash
you can run the commandtype -path parallel
and it'll tell you what version ofparallel
you are running.– Stephen Harris
30 mins ago