直譯器:是一種命令直譯器,主要的作用是對命令進行執行和解釋,將需要執行的操作傳遞給作業系統核心並執行
#!/bin/bash(預設的)
#!/bin/ksh
#!/bin/bsh
#!/bin/sh
shell指令碼第一行會寫 所要用的直譯器 第二行寫注釋 告訴別人你這個指令碼是幹什麼的 第三行寫作者和日期
最簡單的shell指令碼
#!bin/bash
#hello world
#auther time
echo
"hello world"
第一行宣告直譯器不是必須的,但是最好還是加上,避免出現一些未知的錯誤
啟動指令碼 一般用 sh file.sh命令
Linux學習筆記 shell 3
root dark test e hehehe 檢查檔案hehehe是否存在,並不會顯示任何結果 root dark test e hehehe echo exist echo not exist 關於兩個整數之間的判定,例子 test n1 eq n2 eq 兩數值相等 ne 兩數值不等 gt n...
Shell 3 後台執行命令corntab
crontab格式 分 時 日 月 星期 要執行的命令 crontab命令的一般形式為 crontab u user e l r 其中 u 使用者名稱。e 編輯crontab檔案。l 列出crontab檔案中的內容。r 刪除crontab檔案。為了列出crontab檔案,可以使用 crontab l...
linux之shell(3) 歷史命令
history 選項 歷史命令儲存檔案 c 清楚歷史命令 w 把快取之中的歷史命令寫入歷史命令儲存檔案 bash history 我們先來看看.bash history檔案 用cat bash history檢視一下內容 而用history命令來檢視 可以發現.bash history和用histo...