Time of Update: 2014-10-25
標籤:style blog http color io os ar 使用 strong 來源:(linux shell)第一章--小試牛刀(上)從今天開始,我們一起來學習《linux
Time of Update: 2014-10-27
標籤:linux 監控進程 切換後台執行 該指令碼實現了對指定進程名的進程進行每隔2的掃描監控,一旦發現進程不存在便重新啟動。#!/bin/sha=10;while [[ @a -gt 5 ]]; do if test $(pgrep -f $1|wc -l) -eq
Time of Update: 2014-10-27
標籤:style blog io color ar 使用 for sp div 一、條件陳述式簡單條件if [ condition ]; then # 當 condition
Time of Update: 2014-10-27
標籤:shelliamlaosong我們經常在shell指令碼程式中用<<EOF重新導向輸入,將我們輸入的命令字串作為一個執行程式的輸入,這樣,我們就不需要在那個程式環境中手工輸入命令,以便自動執行我們需要的功能,例如:sqlplus emssxjk/emssxjk <<EOFselect count(*) from sncn_yxyj where create_date like
Time of Update: 2014-10-24
標籤:style blog http strong sp 檔案 on 2014 log
Time of Update: 2014-10-27
標籤:style blog color for sp div 2014 log line 退出狀態bash中的內建命令雖然不建立新的進程,但也會有Exit
Time of Update: 2014-10-24
標籤:style io ar 使用 for sp 檔案 div on /*************************************************************
Time of Update: 2014-10-23
標籤:style http color io os ar sp 檔案 資料 1、問題: 下午有同學問了這麼一個問題: tail -n +$(tail -n1 /root/tmp/n) -
Time of Update: 2014-10-23
標籤:關鍵字 字串 曆史 資訊 使用者 目錄: cd : 切換目錄 cd 路徑: 切換至該檔案路徑 cd ~[username] :
Time of Update: 2014-10-22
標籤:style blog http color ar 使用 strong sp on 查看當前系統下所有可用的Shell的類型:cat
Time of Update: 2014-10-24
標籤:shell linux 分析日誌 grep awk 需要統計使用者日誌資訊,分析出使用者行為時,用shell往往能方便地取出很多資料,取出後再放置到excel中統計。例如:統計日誌中含loadCustomProcess這個地址的訪問,按訪問耗時排序:grep "loadCustomProcess"
Time of Update: 2014-10-22
標籤:style blog http color os 使用 sp 檔案 div Bash Shell 的作業環境:配置值分為系統整體配置值與各人喜好配置值,
Time of Update: 2014-10-23
標籤:style blog http color ar java sp 檔案 資料
Time of Update: 2014-10-21
標籤:linux基礎什麼是shell:shell就是人機互動介面,以便於人類控制電腦,通常有圖形介面和文字介面兩種 圖形介面:GUI:Graphic User Interface : Windows IOS,
Time of Update: 2014-10-22
標籤:使用 sp div bs linux nbsp shell 數組 指令碼 給你個全的,你在Linux環境下多試下就明白了:$0 這個程式的執行名字$n
Time of Update: 2014-10-23
標籤:設定檔 使用者名稱 伺服器 linux 管理員 公司的無線環境採用mac地址認證的方式,mac地址被綁定到Radius的users設定檔中,將註冊了的mac地址作為使用者名稱和密碼。為了方便的管理這些mac地址,自己寫了一個shell指令碼來管理。shell指令碼所特有的強大文本處理能力和各種命令函數的組合,使得管理員的工
Time of Update: 2014-10-23
標籤:style io ar 使用 for strong sp 檔案 資料 最近一直在研究shell指令碼這塊,剛好閑下來整了下自己手頭上比較好的資料中的一些範例,以下是我整理的鳥哥私房菜裡面R
Time of Update: 2014-10-22
標籤:style io ar 使用 sp on bs line size 1. 手動解析參數,位置參數 (1) $#: 參數的個數 (2) $1...$9: 第一個參數.
Time of Update: 2014-10-27
標籤:style os ar sp strong 資料 div on 2014
Time of Update: 2014-10-25
使用shell命令分析統計日誌,shell命令統計日誌需要統計使用者日誌資訊,分析出使用者行為時,用shell往往能方便地取出很多資料,取出後再放置到excel中統計。例如:統計日誌中含loadCustomProcess這個地址的訪問,按訪問耗時排序:grep "loadCustomProcess" /home/workflow/socket.txt | awk -F " " '{print $11}'|awk -F ":"