Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- APP_ID=$1
- steam -silent -applaunch $APP_ID 2>&1 | while read line; do
- if [[ $line == *"Exiting app $APP_ID"* ]]; then
- steam -shutdown
- break
- fi
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement