diff --git a/cliargs.sh b/cliargs.sh new file mode 100755 index 0000000..d5fccfd --- /dev/null +++ b/cliargs.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +java -cp "lib/test/*" org.pitest.mutationtest.commandline.MutationCoverageReport --help |\ +grep "^.*--.*" |\ +sed -e "s/\* --/--/" -e "s/ .*//" -e "s/^--/\"--/" -e "s/$/\",/" |\ +sort |\ +sed -e '/testPlugin/d' -e '/--help/d' -e '/---/d' -e '$s/,//' \ No newline at end of file