Created
July 10, 2016 15:54
-
-
Save 97-109-107/93ec87318cfee8befde944bbb29ded21 to your computer and use it in GitHub Desktop.
Creates openrct2 scenario screenshots
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/sh | |
find ~/.config/OpenRCT2/Scenarios/ -iname "*sc6" -print0 | while IFS= read -r -d '' path; do | |
name=$(basename "$path") | |
$(openrct2 screenshot "$path" /tmp/Scenarios/"$name".png 1024 1024 0 50 3 0) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment