1 2 3 4 5 6 7 8 9 10 11 12 13
#!/bin/bash # # PKGALL -- Install all available packages. if [ -e ".repo_pkgs" ]; then p=`cat .repo_pkgs` for f in ${p[@]} ; do make $f done fi exit 0