1. 程式人生 > >shell 學習

shell 學習

php ash lec apach lease 安裝apache 配置lamp 第一個 命令

#!/bin/bash
#變量不區分大小寫
name=zhangjia
echo "This is name $name"
echo $UID
echo $PWD
echo "#########################33"
#打印文件本身
echo $0
#打印第一個參數
echo $1
#打印第二個參數
echo $2
#$?判斷上個命令是否正確.\是轉義符
echo “The \$1 is $1“
#$*表示打印所有參數
echo "The \$* is $*"
#$#表示統計參數的個數
echo "The \$# is $#"
#打印顏色
echo -c "\033[32m------------\033[0m"
#!/bin/bash
#打印菜單
echo "Please select menue install fllow:"
echo "1)安裝apache"
echo "2)安裝mysql"
echo "3)安裝php"
echo "4)配置lamp web "

shell 學習