2015-01-15 18:24:46 +00:00
|
|
|
#!/bin/bash
|
2015-01-15 18:45:16 +00:00
|
|
|
trap "killall background" EXIT
|
2015-04-26 15:57:50 +00:00
|
|
|
|
|
|
|
PROTOCOL="https://github.com/"
|
|
|
|
if [[ $# -eq 1 ]]; then
|
|
|
|
PROTOCOL="git@github.com:"
|
|
|
|
fi
|
|
|
|
|
|
|
|
git clone -b master ${PROTOCOL}vanhoefm/modwifi.git modwifi &
|
|
|
|
git clone -b research ${PROTOCOL}vanhoefm/modwifi-linux.git linux &
|
|
|
|
git clone -b research ${PROTOCOL}vanhoefm/modwifi-ath9k-htc.git ath9k-htc &
|
|
|
|
git clone -b research ${PROTOCOL}vanhoefm/modwifi-backports.git backports &
|
|
|
|
git clone -b master ${PROTOCOL}vanhoefm/modwifi-tools.git tools &
|
2015-01-15 18:24:46 +00:00
|
|
|
wait
|