Patch pour les nouvelles majs discord
This commit is contained in:
parent
5cd04a1d73
commit
22a195c017
1 changed files with 11 additions and 2 deletions
13
extract.sh
13
extract.sh
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
fichierExtract="/tmp/file-tmp"
|
fichierExtract="/tmp/file-tmp"
|
||||||
fichierB="$fichierExtract.b"
|
fichierB="$fichierExtract.b"
|
||||||
|
fichierJson="$fichierExtract.json"
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Télécharge le fichier .b se trouvant à l’url en paramètre et le dézip dans
|
# Télécharge le fichier .b se trouvant à l’url en paramètre et le dézip dans
|
||||||
|
@ -37,9 +38,15 @@ function recupDezip {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function recupJson {
|
||||||
|
command="$@ --output $fichierExtract"
|
||||||
|
eval $command 2> /dev/null
|
||||||
|
}
|
||||||
|
|
||||||
read -p "Entrez commande curl sans --compressed : " commandCurl
|
read -p "Entrez commande curl sans --compressed : " commandCurl
|
||||||
|
|
||||||
recupDezip $commandCurl
|
#recupDezip $commandCurl
|
||||||
|
recupJson $commandCurl
|
||||||
|
|
||||||
# on récupère le nombre de résultat pour avoir le nombre de page
|
# on récupère le nombre de résultat pour avoir le nombre de page
|
||||||
nbResult=$(python3 help.py -g)
|
nbResult=$(python3 help.py -g)
|
||||||
|
@ -60,6 +67,7 @@ if [ -f result.json ]
|
||||||
then
|
then
|
||||||
rm result.json
|
rm result.json
|
||||||
fi
|
fi
|
||||||
|
#cp $fichierExtract result.json
|
||||||
cp $fichierExtract result.json
|
cp $fichierExtract result.json
|
||||||
|
|
||||||
j=25
|
j=25
|
||||||
|
@ -67,7 +75,8 @@ for i in $(seq 1 $nbPage)
|
||||||
do
|
do
|
||||||
newUrl="${url::-1}$j${url: -1}"
|
newUrl="${url::-1}$j${url: -1}"
|
||||||
newCommand="curl $newUrl $args"
|
newCommand="curl $newUrl $args"
|
||||||
recupDezip $newCommand
|
#recupDezip $newCommand
|
||||||
|
recupJson $newCommand
|
||||||
python3 help.py -u
|
python3 help.py -u
|
||||||
j=$((j + 25))
|
j=$((j + 25))
|
||||||
echo -e "\r$i/$nbPage pages\c"
|
echo -e "\r$i/$nbPage pages\c"
|
||||||
|
|
Loading…
Reference in a new issue