![Twitter Follow][twitter]
A shady game master approaches...
Hey there! You look like you would enjoy a good game of chance.
| #!/bin/bash | |
| # partly based on https://stackoverflow.com/a/72548686 | |
| [[ $(id -u) -eq 0 ]] || exec sudo /bin/bash -c "$(printf '%q ' "$BASH_SOURCE" "$@")" | |
| progname=$(basename $0) | |
| quiet=false | |
| no_dry_run=false | |
| while getopts ":qn" opt; do | |
| case "$opt" in | |
| q) |
| #!/bin/bash | |
| #============================================================================== | |
| # An install script which help you to install VMD in Ubuntu 15.04 | |
| # | |
| # Author: Alisue (lambdalisue@hashnote.net) | |
| # License: MIT License | |
| # | |
| # Copyright hashnote.net, 2015, allright reserved. | |
| #============================================================================== | |
| ROOT=$(cd $(dirname $0); pwd) |