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
set: -E: unknown option
When attempting to run roundup on OpenBSD (6.5-release, in my case), one receives the following error:
roundup
./roundup[307]: set: -E: unknown option
This is because /bin/sh on OpenBSD does not support the -E option, only the -e option.
/bin/sh
-E
-e
The text was updated successfully, but these errors were encountered:
/bin/ksh doesn't support the -E option either, so it'd be best to use bash on OpenBSD (which is available in ports).
/bin/ksh
bash
Sorry, something went wrong.
No branches or pull requests
When attempting to run
roundup
on OpenBSD (6.5-release, in my case), one receives the following error:This is because
/bin/sh
on OpenBSD does not support the-E
option, only the-e
option.The text was updated successfully, but these errors were encountered: