Skip to content

Instantly share code, notes, and snippets.

@tonejito
Created March 6, 2014 03:18
Show Gist options
  • Save tonejito/9381635 to your computer and use it in GitHub Desktop.
Save tonejito/9381635 to your computer and use it in GitHub Desktop.
apache-mass-compile.sh
#!/bin/bash -vx
for LOGIN in $@
do
su - $LOGIN -c 'tar -xvvjpf /home/httpd-2.2.26.tar.bz2 && cd httpd-2.2.26 && ./configure --prefix=$HOME/local && make && make install'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment