Advertisement
Thunder-Menu

ChatGPT_from_raw

Mar 10th, 2023
736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.69 KB | Source Code | 0 0
  1. @echo off
  2. setlocal
  3. echo enter your api key here:
  4. set /p key=
  5.  
  6. rem Spécifiez l'URL de la page Pastebin à télécharger
  7. set url=https://pastebin.com/raw/yemaQHx4
  8.  
  9. rem Téléchargez la page et enregistrez-la dans un fichier temporaire
  10. curl %url% -o temp.txt
  11.  
  12. rem Remplacez le texte "apikeyhere" par "newapikey"
  13. set "replacementText=%key%"
  14. powershell -Command "(Get-Content temp.txt) -replace 'apikeyhere', '%replacementText%' | Set-Content temp.txt"
  15.  
  16. rem Enregistrez le contenu modifié dans un fichier .py
  17. type temp.txt > script.py
  18.  
  19. echo start script.py > Start_script.bat
  20.  
  21. rem Nettoyez les fichiers temporaires
  22. del temp.txt
  23. start Start_script.bat
  24.  
  25. echo Script généré avec succès!
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement