Time of Update: 2014-11-19
標籤:blog io ar sp for 檔案 資料 on 2014 dbcn="mysql -h172.16.1.194 -uroot
Time of Update: 2014-11-24
標籤:shell script 說明一下就是這篇文章不涉及太多配置上的問題,小弟只是用安裝EDM伺服器的例子想寫寫shellscript指令碼編寫方面。
Time of Update: 2014-11-23
標籤:shell script 數學運算 bc expr (()) $[] 在shell
Time of Update: 2014-11-23
標籤:bash shell 指令碼 一 注意事項1.指令碼的開頭一行為 :#!/bin/bash聲明這個指令碼需要的shell的名稱2.程式中出了"#!"之外的其他以#開頭的都是注釋內容3.為了方面的使用系統命令,可以在程式的開始部分設定主要環境變數例如PATH4.指令碼程式的運行方法:sh example.sh 或者類似 bash
Time of Update: 2014-11-23
標籤:style blog io ar color sp 檔案 on div 最近發現date命令特別好用(在mac裡面不行)1、擷取今天的日期[[email protected] ~
Time of Update: 2014-11-23
標籤:shell指令碼 系統登入指令檔 服務啟動指令碼實驗要求:1、為root使用者編寫登陸歡迎指令碼,報告當前主機中的進程數,已登陸使用者數,根檔案系統的磁碟使用率2、編寫三個指令碼程式:start,stop和status,用來啟動,停止各種系統服務實驗步驟:[[email protected] ~]# vi welcome.sh#!/bin/bash# this is test.by shengjiep=`ps aux | wc -l` //設定變數pecho "Running
Time of Update: 2014-11-20
標籤:shell bash 變數 variableName=value等號左右不能有空格變數內容有空格需要用"或者‘括起來,但是 v="hello $name" $保持原有功能,單引號則不行,v="hello ‘$name‘"純文字可用轉義符\將特殊字元轉成普通文本 `命令`,$(命令) ,在文本中提供命令執行資訊變數累加,
Time of Update: 2014-11-20
標籤:shell bash awk 萬用字元與Regex的區別萬用字元是bash原生支援的文法,Regex是處理字串的一種表示方式, Regex需要支援的工具支援才可以語系設定 : export LANG=Cgrep alias 設定 : grep --color=autogrep 的一些進階參數grep [-A] [-B] ‘搜尋字串‘ filename
Time of Update: 2014-11-19
標籤:style blog http io ar color os 使用 sp 本文主要對shell中基本的文法進行簡要記錄,以備查用!1、shell變數在定義變數名時不加貨幣符號$,只在使用變
Time of Update: 2014-11-21
標籤:style blog http ar color os 使用 sp strong bash shell命令與監測的那點事之df與du 前兩篇介紹了bash
Time of Update: 2014-11-21
標籤:style blog io ar color sp for on div $ cat openstack_install.sh #!/usr/bin/env bashfunction
Time of Update: 2014-11-20
標籤:blog http ar color sp 檔案 on art log X Shell 4是個很好的Windows下登入Linux伺服器的終端,比Putty好用 X Shell
Time of Update: 2014-11-20
標籤:快速鍵 緩衝區 crt 使用快速鍵,可減少滑鼠點擊的次數,從而提高效率,下面是總結的shell下的快速鍵:Ctrl+a
Time of Update: 2014-11-20
標籤:style blog http io ar 使用 sp strong 檔案 參考文章:1
Time of Update: 2014-11-19
標籤:hadoop hdfs shell操作 Hadoop讀書筆記(一)Hadoop介紹:http://blog.csdn.net/caicongyang/article/details/398986291.shell操作1.1所有的HDFS shell操作命名可以通過hadoop fs擷取:[[email protected] ~]# hadoop fsUsage: java
Time of Update: 2014-11-21
標籤:style blog http color 使用 sp on div 2014 SHELL函數調用分為兩種:第一種方式,有點像C語言調用函數的風格,直接把函數的執行結果複製給變數!不過,這
Time of Update: 2014-11-21
標籤:style blog http io ar color 使用 sp java Tlog中一些shell命令技巧陰差陽錯的做的日誌分析,前途未蔔的這段日子,唯一還有點意思的可能就是手動的處理
Time of Update: 2014-11-20
標籤:style blog http ar color 使用 sp strong 檔案 bash
Time of Update: 2014-11-19
標籤:io ar color os 使用 sp for 檔案 on shell字串的截取的問題:一、Linux shell 截取字元變數的前8位,有方法如下: 1.expr substr
Time of Update: 2014-11-21
鳥書shell 學習筆記(二) shell中Regex相關,shellRegex萬用字元與Regex的區別萬用字元是bash原生支援的文法,Regex是處理字串的一種表示方式, Regex需要支援的工具支援才可以語系設定 : export LANG=Cgrep alias 設定 : grep --color=autogrep 的一些進階參數grep [-A] [-B] '搜尋字串' filename //同時輸出之前的k行和之後的m行-A : 後面可加數字,表示列出改行以及之後的n行-B :