#!/bin/shPATH=$PATH:./if [ $# -lt 2 ]then echo -e "Please Execute `basename $0` parameter!\n"fi
if [ -n $2 ]then nohup "$1" > "$2" 2>&1 &fi