Created
August 22, 2014 22:35
-
-
Save trygveaa/06b92fda0a4fddf18d1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
dir=$(mktemp -d) | |
cd $dir | |
cower -ddu | |
vim -p */* | |
for package in *; do | |
cd $package | |
makepkg -sicr | |
cd .. | |
done | |
cd | |
rm -rf $dir |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment