clean.sh 267 B

12345678910111213
  1. #!/usr/bin/env bash
  2. # Andreas, 2014-05-21, adapted from ../fail/clean.sh
  3. sed=$1
  4. $sed -e 's/[^ (]*test.interaction.//g' \
  5. | $sed -e 's/[^ (]*lib.prim/agda-default-include-path/g' \
  6. | $sed -e 's/[^ (]*test.Common.//g' \
  7. | $sed -e 's/:[[:digit:]]\+:$//'
  8. # EOF