Skip to content

Instantly share code, notes, and snippets.

@cmhtcleo
Created October 19, 2011 14:06
Show Gist options
  • Save cmhtcleo/1298382 to your computer and use it in GitHub Desktop.
Save cmhtcleo/1298382 to your computer and use it in GitHub Desktop.
compile all kernels
#!/bin/bash
for kernel in `ls | grep -v doKern`
do
cd $kernel > /dev/null 2>&1
./script.sh
cd - > /dev/null 2>&1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment