1#!/bin/sh 2 3echo "Attempting to parse currently running kernel config" 4./test_kconfig 5echo 6 7for i in config0*; do 8 head -n 1 "$i" 9 KCONFIG_PATH="$i" ./test_kconfig 10 echo 11done 12