Training courses
Kernel and Embedded Linux
Bootlin training courses
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/bin/sh #set -x cd "$(dirname "$0")" log=/tmp/log rm $log 2> /dev/null for t in *.out do /bin/sh checkone.sh $t if [ $? -ne 0 ]; then echo `basename $t` >> $log fi done