Skip to content

Commit

Permalink
Added script to list parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed May 27, 2024
1 parent b6995b0 commit ec0998c
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cliargs.sh
Original file line number Diff line number Diff line change
@@ -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/,//'

0 comments on commit ec0998c

Please sign in to comment.