大四狗花了一天時間學習了shell , 總結乙個例項來帶大家快速了解shell !
#!/bin/bash
cd ~
mkdir shell_tut13
cd shell_tut13
for ((i=0; i<10; i++)); do
touch test_$i.txt
echo
"this is a test $i"
>> test_$i.txt
done
第一行: 表示shell 是以bash解釋 #!代表以何種語言解釋。
第二行~第四行:不用太多解釋,進入主目錄,建立資料夾,然後進入資料夾
第四行: shell 的for迴圈 ,do開始迴圈 done結束
第六行: 插入文字 this is a test o 到檔案 其中 $i 是shell 變數的表示法。
將此檔案儲存 命名為test.sh 字尾其實都不重要,見名思義 作為程式設計師還是嚴謹規範的好!
執行 cd test.sh父目錄 輸入 /bin/sh test.sh
到此我們完成了建立乙個資料夾,其中包含10個文字檔案,都包含特定文字內容。
簡潔明瞭的介紹了shell ,好吧,原因是之前輸入內容莫名消失這是第二遍,所以字數更簡潔 安靜
通過乙個例項簡單了解perl
這是乙個使用者管理的小軟體。需要輸入正確的密碼才能進入系統,密碼通過.secret檔案儲存,將使用者輸入錯誤的密碼通過dbm檔案儲存到本地,並且通過mail通知管理員 usr bin perl w w表示 w轉換器,要求perl對潛在的危險構建產生附加報警資訊 words hello your ss...
Tomcat建立例項的乙個指令碼(shell 指令碼)
bin bash tc home opt oracle tomcat instancename 1 建立的例項 cd dev null template dir pwd echo template dir if d tc home then mkdir p tc home 目錄不存在就建立 fi u...
用shell 實現自動ftp的乙個例項
bin bash echo echo cintel ftp test tool echo please input hostip c read hostip echo please input username c read username echo please input password c...