(1)建立一級目錄
mkdir dir1(2)建立多級目錄
mkdir -p dir1/dir2(3)建立指定許可權的目錄
mkdir -m 777 dir1(4)刪除目錄
rm -r dir1(1)單分支if語句
if 判斷條件;then(2)雙分支if語句statement1
statement2
.......
fi
if 判斷條件;thenstatement1
statement2
.....
else
statement3
statement4
fi
第一步:在sublime中新建乙個以.sh為字尾的檔案,並輸入
echo "hello shell!"第二步:在終端中執行該指令碼
注意事項:
如果執行指令碼時報錯「permission denied
」就是沒有許可權報錯。修改該檔案的許可權,執行命令
chmod 777 test.sh
shell指令碼學習筆記
學習筆記 1,檔案名字命名為 sh,字尾sh表明這是乙個bash指令碼檔案 2,shell指令碼的第一行如下 bin sh bin sh告訴系統其後路徑所指定的程式即是解釋此指令碼檔案的shell程式 3,寫完指令碼後儲存檔案,然後將檔案變成可執行檔案 chmod x test.sh 4,以下是乙個...
Shell指令碼學習筆記
find 命令 1.基於檔名或者正規表示式搜尋 例子 匹配多個條件 find name txt o name pdf print 找到當前目錄中所有txt pdf檔案輸出 加 o 表示or條件 將中間部分視為乙個整體 find regex py sh regex 基於正規表示式匹配 2.基於目錄深度...
Shell指令碼 學習筆記
編寫輸出hello world的程式是入門的第一步 1.vim helloworld.sh 2.輸入 i 進入插入模式 開始寫指令碼 bin sh echo hello world 3.執行shell指令碼 chmod 0777 helloworld.sh 賦予執行許可權 helloworld.sh...