JDBC用法小結。本站提示廣大學習愛好者:(JDBC用法小結)文章只能為提供參考,不一定能成為您想要的結果。以下是JDBC用法小結正文
1.界說變量時, =號的雙方弗成以留空格.
eg:
gender=femal————right
gender =femal———–wrong
gender= femal———–wrong
2.前提測試語句 [ 符號的雙方都要留空格.
eg:
if [ $gender = femal ]; then——-right.
echo “you are femal”;
fi
if[ $gender...-----------------------wrong
if [$gender...----------------------wrong.
3.前提測試的內容,假如是字符串比擬的話, 比擬符號雙方要留空格!
eg:
if [ $gender = femal ]; then——-right.
if [ $gender= femal ]; then——–wrong.
if [ $gender=femal ]; then———wrong.
4.假如if 和 then寫在統一行, 那末,留意, then的後面要跟上 ; 號.假如 then 換行寫, 那末也沒成績.
eg:
if [ $gender = femal ]; then——-right.
if [ $gender = femal ]
then——————————-right.
if [ $gender = femal ] then——-wrong. then後面少了 ; 號.
提醒失足信息:
syntax error near unexpected token then
同理,還有許多失足信息 好比
syntax error near unexpected token fi 等都是如許惹起的.
5.if 前面必定要跟上 then. 同理
elif 前面必定要跟上 then.
否則提醒失足信息:
syntax error near unexpected token else
1)if 語句前面須要隨著then,同時後面要有分號;
2) 空格異常主要,shell 會以為空格前的為一個敕令,假如a=3 以為是賦值操作,假如寫成a = 3,那末就會以為a為一個敕令 this=`ls -l |grep ‘^-' | wc -l `
3) 操作符之間要用空格離開 ,如 test ! -d $1,個中的!和-d就要用空格離開
空格是敕令解析中的主要分隔符
6. 敕令和厥後的參數或對象之間必定要有空格
if [ -x"~/Workspace/shell/a.sh" ];then
只要 -x 後有空格才表現緊跟厥後的字符串能否指向一個可履行的文件名,不然就成了測試 -x"~/Workspace/shell/a.sh" 這個字符串是否是空。
7.取變量值的符號'$'和後邊的變量或括號不克不及有空格