Last active
March 1, 2025 22:04
-
-
Save tnn4/b7541c15e0a493a7085c94d9f01066c3 to your computer and use it in GitHub Desktop.
download game ai pro chapters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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)