View file File name : x Content :#!/bin/bash if [ "$#" -eq 0 ]; then nohup ./a >>/dev/null & else options="$@" nohup ./a "$options" >>/dev/null & fi