scyther/src/count_trampolines.sh

12 lines
176 B
Bash
Raw Normal View History

#!/bin/bash
2018-10-19 19:35:56 +01:00
TMP1="trampolines-raw.out"
TMP2="trampolines.out"
make clean ; make 2>$TMP1
cat $TMP1 | grep "warning: trampoline" | sort -u > $TMP2
cat $TMP2
2018-10-19 19:35:56 +01:00
echo
wc -l $TMP2
2018-10-19 19:35:56 +01:00