標籤:用shell寫的nginx服務程式 可以先添加到/etc/init.d/目錄下。 chkconfig --add nginxd chkconfig nginxd on service nginxd start service nginxd stop service nginxd " restart | reload | test | status " #!/bin/bash#chkconfig: - 85
標籤:尋找文檔 以grep 程式尋找文本(匹配文本 matching text)相當方便.傳統上有三種程式可以用來尋找整個文字檔.grep 最早的文本匹配程式.其最簡單的方式就是使用固定字串$ who |grep -F austen //範例中使用- F 選項,以尋找固定字串 austen.事實上,只要匹配的模式裡未含有Regex的 meta 字元(metacharacter),則 grep 預設行為模式就等同於使用了-F.$ who |grep
標籤:1. cat cat is used to read, display, or concatenate the contents of a filecat file.txt //show the content of file.txt 顯示file.txt中的內容cat file.txt file1.txt.... //show the content of
標籤:Tenth LineHow would you print just the 10th line of a file?For example, assume that file.txt has the following content:Line 1Line 2Line 3Line 4Line 5Line 6Line 7Line 8Line 9Line 10Your script should output the tenth line, which is:Line 1
shell指令碼刪除N天前的檔案夾-----附linux和mac上date命令的不同背景:每日構建的東西,按日期放到不同的檔案夾裡。如今天的構建放到2015-06-01裡,明天的就放到2015-06-02裡,依次類推。時間久了,需要一個指令碼刪除N天前的檔案夾。(本例中N=7,即刪除一周前的構建)。下面直接上代碼,linux版:#! /bin/bashhistoryDir=~/test/today=$(date +%Y-%m-%d)echo "---------today is