Time of Update: 2014-10-04
標籤:style blog http color os 使用 ar for strong SHELL syntax error:unexpected end of file 提示錯誤if [ -
Time of Update: 2014-10-04
標籤:des style blog http color io 使用 ar for shell script 的追蹤與 debug scripts 在運行之前,最怕的就是出現語法錯誤的問題了!
Time of Update: 2014-10-04
標籤:des http io os 使用 ar for 檔案 資料 overview 檔案系統(FS) shell包含各種與HDFS互動的命令, 比如 Local FS,
Time of Update: 2014-10-02
標籤:style blog http io ar java for strong 檔案 並行化scala集合(Parallelize) //載入資料1~10val
Time of Update: 2014-10-02
標籤:style blog http color io os 使用 ar for dateLinux時鐘分為系統時鐘(System Clock)和硬體(Real Time
Time of Update: 2014-10-02
標籤:style blog http color 使用 ar sp c on 假設我們定義了一個變數為: file=/dir1/dir2/dir3/my.file.txt可以用${
Time of Update: 2014-10-01
標籤:zabbix shell agent #!/bin/bash#./zabbixagent.sh 172.16.103.16 172.16.103.134#$1 master address, $2 local_listen_ip groupadd zabbix &n
Time of Update: 2014-10-01
標籤:zabbix shell #!/bin/bashDBUSER=‘root‘DBPASS=‘‘DBHOST=‘localhost‘ZBX_VER=‘2.0.1‘function checkReturn { if [ $1 -ne 0 ]; then echo 
Time of Update: 2014-10-01
標籤:style blog http color io ar strong sp div
Time of Update: 2014-09-30
標籤:blog http io strong sp div 2014 c on type command - env x=‘() { :;}; echo vulnerable‘
Time of Update: 2014-09-30
標籤:shell指令碼啟動程式 我們都知道jvm本身提供了很多的命令供使用者調用,有時候我們需要使用這些命令寫一些指令碼來執行我們的程式,首先說下以下指令碼的目錄結構:bin 指令碼存放處lib 依賴的jar包存放處conf 依賴的設定檔存放處打好的可運行jar放在目前的目錄#!/bin/bashexport JAVA_HOME=/usr/javaexport PATH=$JAVA_HOME/bin:$PATH#--------------
Time of Update: 2014-09-30
標籤:des http io ar for 檔案 sp div art http://www.jb51.net/article/51308.htm123456789101112131415161
Time of Update: 2014-09-29
標籤:linux 營運 #!/bin/bashecho "IP:"ifconfig |grep "inet addr"|grep -v 127.0.0.1|awk '{print $2}'|awk -F ':' '{print $2}'echo "Product Name:"dmidecode |grep
Time of Update: 2014-09-29
標籤:des http io os 使用 ar for 檔案 sp 第一部分:Hadoop Bin後面根據項目的實際需要Hadoop Bin 包括:Hadoop
Time of Update: 2014-09-29
標籤:des style http color io os 使用 ar for 可以帶著下面問題來閱讀:1.chmod與chown的區別是什麽?2.cat將路徑指定檔案的內容輸出到哪裡?3.cp
Time of Update: 2014-10-02
Shell升級,/bin/bash版本4.1到4.3,bash4.3bash環境變數存在任意代碼執行漏洞:“通過CGI請求方式可以導致遠程代碼執行,進而導致伺服器被入侵,危害嚴重,且官方公布補丁也被繞過”,【漏洞影響】:1)bash受影響版本:3.0 ~ 4.3,小於3.0的bash版本也可能受影響,2)入侵方式:結合CGI方式可以導致遠程代碼執行,入侵伺服器;瞭解系統當前bash的版本[root@image01 ~]# /bin/bash -versionGNU bash, version 4
Time of Update: 2014-10-01
Shell編程入門(第二版)(中)變數測試語句-test作用:用來測試變數是否相等,是否為空白,檔案類型等。格式:test 測試條件 或 [] #範圍:整數,字串,檔案1)整數測試:test int1 -eq int2 測試整數是否相等test int1 -ge int2 測試int1是否>=int2test int1 -gt int2 測試int1是否>int2test int1 -le int2 測試int1是否<=int2test int1 -lt int2 測試int1
Time of Update: 2014-10-01
Shell編程入門(第二版)(上)簡單的樣本Shell程式樣本1. #!/bin/bash#This is to show what a shell script looks likeecho "Our first example"echo # This inserts an empty line in output.echo "We are currently in the following
Time of Update: 2014-09-30
shell指令碼查看網路設定,shell指令碼查看#!/bin/bashifconfig|grep -E 'eth|inet'|grep -Ev '(inet6|127.0.0.1)'|sed 's/ /\n/g'|awk NF|grep -Ev '(inet|encap|Link|HWaddr)'|sed 's/00:/MAC:/g';route|grep default|awk '{print
Time of Update: 2014-09-29
Shell編程入門(第二版)(中),shell編程入門變數測試語句-test作用:用來測試變數是否相等,是否為空白,檔案類型等。格式:test 測試條件 或 []#範圍:整數,字串,檔案 1)整數測試: test int1 -eq int2 測試整數是否相等 test int1 -ge int2 測試int1是否>=int2 te