SHELL建立指令碼工具

來源:互聯網
上載者:User

標籤: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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.