This commit is contained in:
kyodev 2017-09-24 10:15:32 +02:00
parent 1e15144739
commit 7f6e71794b
1 changed files with 15 additions and 4 deletions

View File

@ -14,6 +14,12 @@ f__sudo(){ # 24/09/2017
unset i
}
# $1=timeout en s
f__pause(){
printf "Appuyer sur une touche pour continuer ou attendre $1""s"
read -n1 -t$1 reply
echo
}
if [ $EUID -ne 0 ]; then
echo "vous devez être ROOT pour installer les scripts dans le système"
f__sudo "./sdeb"
@ -38,15 +44,20 @@ chmod +x getFlashPlayer
wget -O getThunderbird https://framagit.org/kyodev/kyopages/raw/master/scripts/getThunderbird
chmod +x getThunderbird
./getInfo -i
./getIp -i
./getFirefox
f__pause 3
./getFlashPlayer
f__pause 3
./getThunderbird
f__pause 3
./getInfo -i
f__pause 3
./getIp -i
f__pause 3
exit 0