Skip to content

Instantly share code, notes, and snippets.

@tnn4
Last active March 1, 2025 22:04
Show Gist options
  • Save tnn4/b7541c15e0a493a7085c94d9f01066c3 to your computer and use it in GitHub Desktop.
Save tnn4/b7541c15e0a493a7085c94d9f01066c3 to your computer and use it in GitHub Desktop.
download game ai pro chapters
#!/bin/bash
# see: https://www.reddit.com/r/gamedev/comments/evx5rb/comment/fg0jgpb/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button
# wget --recursive --level=2 --accept '*.pdf' http://www.gameaipro.com/GameAIPro3
# run from url: bash <(curl https://gist.github.com/tnn4/b7541c15e0a493a7085c94d9f01066c3/raw/58fa63a3290ca6eecd0c6ae2c2588227b34c9b84/dl-gameaipro.sh)
wget -w 1 --random-wait -r -l 2 -A pdf,zip --accept '*.pdf' http://www.gameaipro.com/
@tnn4
Copy link
Author

tnn4 commented Mar 1, 2025

run from url
see: https://stackoverflow.com/questions/5735666/execute-bash-script-from-url

bash <(curl https://gist.github.com/tnn4/b7541c15e0a493a7085c94d9f01066c3/raw/58fa63a3290ca6eecd0c6ae2c2588227b34c9b84/dl-gameaipro.sh)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment