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
Likely candidates can also be found using something like the following script:
#!/bin/sh set -e oldpwd=$(pwd) testdir=$(mktemp -d) cd "$testdir" trap 'cd "$oldpwd" && rm -rf "$testdir"' EXIT curl -sL https://github.com/sctp/lksctp-tools/raw/master/src/apps/sctp_test.c | tee s_t.c | sed -ne '/void usage(/,/* usage() */ {s/\\[nt]//g;p}' >usage options=$(sed -ne 's/^.*getopt([^"]*"\([^"]*\)").*$/\1/p' s_t.c). while true; do option=$(printf %c "$options") case $option in :) ;; .) exit;; ?) grep -qE "(^|[^[:alnum:]_-])-$option($|[^[:alnum:]_-])" usage || printf '%s\n' "$option";; esac options=${options#?} done
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Likely candidates can also be found using something like the following script:
The text was updated successfully, but these errors were encountered: