Time of Update: 2014-10-14
標籤:hive shell hadoop mapreduce mahout 錯誤一:Hive的where後不能用欄位的別名, 錯誤二:hive的groupby中不能用自訂函數,否則報錯(用嵌套select代替) 錯誤三:執行:$ ./hive_game_operationstatis5.sh時,報錯資訊如下:
Time of Update: 2014-10-11
標籤:android style http color 使用 ar java for strong 我們在Android開發中總能看到程式的log日誌內容充滿了螢幕,而真正對開發人員有意義的資訊
Time of Update: 2014-11-25
標籤:style color os 使用 sp strong on bs amp 網上有很多的文章教大家使用定時任務,所以別的廢話我就不多說了我這裡直接有SH來做定時,只是有一點大家不知道,一定
Time of Update: 2014-11-26
標籤:style blog http io ar color os sp for 1.查看記憶體從大到小排列ps -e -o "%C : %p : %z : %a"|sort -k5
Time of Update: 2014-11-23
標籤:shell linux 變數聲明變數:declare attribute variable#attribute表示變數的屬性,常見的屬性如下:# -i 將變數定義為整數;-a 變數聲明為陣列變數;-r 將變數聲明為唯讀變數;-x
Time of Update: 2014-11-12
標籤:style blog http io color ar os 使用 sp 假如檔案名稱是:time_filename.txt 改成filename_time.txt。例如20111111_
Time of Update: 2014-11-10
標籤:style http io color ar os 使用 sp for 寫一段hello world:
Time of Update: 2014-11-05
標籤:shell指令碼1:重新導向中的錯誤和輸出定向到同一檔案的方式是: 如:ls + 1>list.txt 2>&1 或 ls + &>list.txt 而不是 ls + 2>&1 list.txt2: -exec中的{} \;這是命令格式,不是換行,中間有個空格並且\需要直接接; {}替換-exec中的輸出3
Time of Update: 2014-11-03
標籤:環境變數 bash shell 設定檔 介紹 瞭解Linux的啟動順序,也有助於本內容的理解,載入使用者環境是Linux啟動的最後一步。不同的shell 會使用不同的設定檔: bash (.profile), ksh (.profile), csh (.login)。bash shell 被設計成相容sh, ksh,
Time of Update: 2014-11-04
標籤:style blog io color ar os java for sp 運行之前將伺服器弄成免ssh登陸。設定檔沒有太大的改動 可以覆蓋之前的配置profile
Time of Update: 2014-11-01
標籤:shell loop while until for 1. 迴圈shell迴圈,不斷執行某段程式,直到符合條件。迴圈分為4種, while迴圈,until迴圈,for固定處理, for數值處理。2. while迴圈while迴圈是一直執行,直到條件不符合,才停止。文法:while [ condition
Time of Update: 2014-11-03
標籤:shell bash linux function 我們在寫一些功能性指令碼的時候,往往會把操作相似或者參數類似行為接近的函數放在同一個shell指令碼中,這樣管理方便,維護簡單,也很清晰。對於這種情況,通常的辦法是,在shell指令碼中定義所有用到的函數,然後在本文代碼中用case語句讀入輸入的命令函數參數來調用指定的相應函數
Time of Update: 2014-10-31
標籤:shell測試 tomcat重啟[[email protected] bin]$ sh -n restart.sh [[email protected] bin]$ -n:不要執行script,僅僅檢查文法,如果正確不會有任何輸出,如果有錯,則會有提示[[email protected] bin]$ sh -x restart.sh + TOMCAT_HOME=/opt/apache-tomcat-8.0.14+ cd /opt/
Time of Update: 2014-10-30
標籤:style blog io ar for sp 檔案 on 2014 Shell編程入門 一,變數賦值及算術運算// 範例程式碼:a=1echo $alet b=$
Time of Update: 2014-10-30
標籤:jenkins shell ci ssh 用過Jenkins的都知道,在Build配置那裡有一個Add buld step, 有這樣兩個選項:1. Execute Windows batch command2. Execute
Time of Update: 2014-10-15
標籤:style color ar strong sp on bs new as 1. 字串如何大小寫轉換str="This is a Bash Shell script."1>
Time of Update: 2014-10-13
標籤:style blog color for 檔案 sp 資料 div on 在指令碼編寫過程中,通常會涉及到參數的輸入。譬如,sh 1.sh 10
Time of Update: 2014-10-14
標籤:style blog color io os 使用 java sp div case ... esac 與其他語言中的 switch ... case
Time of Update: 2014-10-13
標籤:unix環境進階編程 linux shell 思路:在unix系統中有一個名為utmp的檔案,裡面存著當前登入到系統中使用者的資訊。utmp這個檔案裡面儲存的是結構數組,數組元素是utmp類型的結構。實現who命令,只要依次從utmp檔案中讀出utmp類型的結構體,然後通過合適的方式將它顯示出來即可。如果每一次只從檔案裡面讀一個結構體資料,那麼每一個結構體都要進行依次系統調用。而又因為系統
Time of Update: 2014-10-12
標籤:shell 時間 最近寫了一個小程式,需要用到時間,遍曆作為目錄的一部分#!/bin/bashfor i in {1..30}dodate=`date +%Y/%m/%d -d " $i days ago " `echo $datedonefor迴圈,取最近n天的日期。核心就是date=`date +%Y/%m/%d -d " $i days ago " `結果,