標籤:bash 指令碼 bash語法檢查
每次建立一個指令碼的時候都,都要在指令碼前面加上#!/bin/bash等一些固定格式的文本,這個bash指令碼建立指令碼可以自動添加解譯器為bash、日期作者等一些資訊。並且在建立完成後自動檢查文法是否有錯誤,如果有錯誤它會幫你用vim開啟,並且定位到出現文法問題的行。如果文法有錯誤,會強制不讓你退出。要退出按ctrl+c鍵。給如果建立是的bash指令檔,會給此檔案加執行許可權。
使用方法:在此指令碼後面跟上你要建立的檔案名稱,檔案名稱要以.sh結尾,否則不會當作指令檔。
#./create.sh new_file.sh
#!/bin/bash#### 判斷檔案是否存在Sh=$(echo $1 | grep -o ‘.sh$‘)#if ! [ "$#" -eq 1 ]#then#echo ‘SYNOPSIS:./createfile.sh <FileName>‘#exit #fiif [ -a "$1" ]thenecho "file $1 is exists. pless input other filename"exit 1elif [ -d "$1" ]thenecho "file $1 is directory. pless input other filename"exit 2#建立指令碼檔案elif [ ".sh" == "$Sh" ]thencat << EOF >>$1#!/bin/bash#description:#version:#author: wukui#license:GPLEOFDate=$(date +%F-%H:%M)echo "#date:$Date" >>$1elsetouch $1exitfi# 判斷是否為bash指令碼類型檔案,如果是則開啟並定位到最後一行if [ ‘shell‘ == `file $1 | cut -d‘ ‘ -f3` ]thenvim + $1elseexitfi#給指令檔加執行許可權if [ ‘shell‘ == `file $1 | cut -d‘ ‘ -f3` ]thenif ! [ -x "$1" ]thenecho "chmod +x $1"chmod u+x $1 &> /dev/nullfifi#檢查文法,如果有問題,用vim開啟並定位到出現問題的行if [ ‘shell‘ == `file $1 | cut -d‘ ‘ -f3` ]thenif ! `bash -n $1`thentouch aaaaaaaaaabash -n $1 &> aaaaaaaaaaLine=$(cut -d: -f2 aaaaaaaaaa | cut -d‘ ‘ -f3 | sort -u)while [ -n "$Line" ]dovim +$Line $1bash -n $1 &> aaaaaaaaaaLine=$(cut -d: -f2 aaaaaaaaaa | cut -d‘ ‘ -f3 | sort -u)doneelseecho "very good"exitfifirm -f aaaaaaaaaa
附件用windows記事本開啟可能會不換行。這是因linux與windoows分行符號不同造成的。
本文出自 “我的記錄” 部落格,請務必保留此出處http://wukui.blog.51cto.com/1080241/1437570