Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- ME=$(echo "Please replace this text with your links to download" 2>&1 | zenity --text-info --editable --width 650 --height 400);
- zenity --question --ok-label=Yes --cancel-label=No --text="Do you wish to shutdown when finished?"
- if [[ $? == 0 ]] ; then
- RESP=y
- else
- RESP=n
- fi
- plowdown $ME
- if [ "$RESP" = "y" ]; then
- sudo shutdown -h now
- fi
Add Comment
Please, Sign In to add comment