Run a command in the background

bkr() {
    (nohup "$@" &>/dev/null &)
}

bkr ./some_script.sh # some_script.sh is now running in the background

This will run the given command and keep it running, even after the terminal or SSH connection is terminated. All output is ignored.