#! /bin/bash
################################################
##Author: freeking
##Created: Jan 26th 2013
##Description useage of parameters
###############################################
echo $# #numbers of parameters
echo $@ #contens of parameters
echo $* #contens of parameters
echo $- #profiles of parameters like set
echo $$ #pid of the process
echo $! #the last backgroup pid of process
echo $? #the status of the exit
################################################
##Author: freeking
##Created: Jan 26th 2013
##Description useage of parameters
###############################################
echo $# #numbers of parameters
echo $@ #contens of parameters
echo $* #contens of parameters
echo $- #profiles of parameters like set
echo $$ #pid of the process
echo $! #the last backgroup pid of process
echo $? #the status of the exit