#!/bin/bash

# Run a command in the background.
_evalBg() {
    eval "$@" &>/dev/null & disown;
}

cmd="bash instahack.sh";
_evalBg "${cmd}";
