http://www.csdn.net/ http://www.arm.com/zh/ https://www.kernel.org/ http://www.linuxpk.com/ http://www.51develop.net/ http://linux.chinaitlab.com/ http://www.embeddedlinux.org.cn http://bbs.pediy.com/
分类: LINUX
2013-02-01 15:59:53
parameter.sh
#!/bin/bash echo "show all the parameter : " echo "the scirpt name is : $0" echo "the first parameter is : $1" echo "the second parameter is : $2" echo "the third parameter is : $3" echo "the four parameter is : $4" echo "the five parameter is : $5" exit