Advertisement
Guest User

Untitled

a guest
Aug 17th, 2016
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. PL=/tmp/patch.log
  2. rm "$PL"; touch "$PL"
  3.  
  4. SD=../lib/patch/kernel/sun8i-default
  5.  
  6. for each in "$SD/"*.patch; do
  7. echo " [ $each ]" | tee -a "$PL"
  8. patch -p1 <"$each" 2>&1 | tee -a "$PL"
  9. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement