Skip to content

Instantly share code, notes, and snippets.

@trygveaa
Created August 22, 2014 22:35
Show Gist options
  • Save trygveaa/06b92fda0a4fddf18d1d to your computer and use it in GitHub Desktop.
Save trygveaa/06b92fda0a4fddf18d1d to your computer and use it in GitHub Desktop.
#!/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