Skip to content

Instantly share code, notes, and snippets.

@elken
Created October 26, 2013 18:54
Show Gist options
  • Select an option

  • Save elken/7173187 to your computer and use it in GitHub Desktop.

Select an option

Save elken/7173187 to your computer and use it in GitHub Desktop.
recursive makepkg
#!/bin/bash
for i in `ls`; do
cd $i
makepkg -s --noconfirm
cd ..
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment