Time of Update: 2014-07-28
標籤:android style blog color 使用 資料 io for adb shell am使用此命令可以從cmd控制台啟動 activity, services;發送 broadcast等等: 1
Time of Update: 2014-08-03
標籤:style blog http color 使用 os strong io 上節中已經對後台作業進行了簡單處理,基本上要實現的功能已經完了,下面回過頭來,對代碼進行一個調整,把寫得不好的地方梳理一下,給代碼加入適當的注釋,
Time of Update: 2014-08-03
標籤:des style blog color io 檔案 2014 cti 1 #!/bin/bash - 2 #======================================================
Time of Update: 2014-08-02
標籤:des style http os io 檔案 資料 for 1、Unix shell的功能 shell是一個管理進程和運行程式的程式。所有常用的shell都有3個主要功能: (1)運行程式;
Time of Update: 2014-08-02
標籤:字串處理shell編程之字串處理 在 shell
Time of Update: 2014-07-27
標籤:linux運行層級 linux啟動之後會在一個層級運行,下面列出了這些運行層級:0 系統停止1 單使用者系統,不需要登陸2 多使用者系統但不支援NFS,命令列模式登陸3 完整多使用者模式,命令列模式登陸4 未用5 X11圖形模式,圖形模式登陸6 重新啟動系統這些可以在/etc/initab檔案中可以看到0-6級的注釋,程式碼片段如下:# Default runlevel. The runlevels used by RHS are:# 0 - halt (
Time of Update: 2014-07-26
標籤:linux shell 基礎 shell find 文章來自於我的個人部落格:(linux shell)第二章--命令之樂(一) 上一章我們描述了一些linux shell中需要注意的一些文法,接下來我們開始瞭解linux shell的常用命令。let‘s go...cat
Time of Update: 2014-07-27
標籤:windows 管理程式 lync powershell 在Windows 2012 R2上安裝Lync2013後,無法正常開啟Lync命令列管理程式,現象如:650) this.width=650;" src="http://s3.51cto.com/wyfs02/M00/41/5A/wKioL1PTfSrS4XniAAC4xFArUeA489.jpg"
Time of Update: 2014-08-01
標籤:software windows password linux expect Expect是一個用來實現自動互動功能的軟體套件(Expect [is a] software suite for automating interactive
Time of Update: 2014-08-01
標籤:檔案 資料 for ar 時間 file c user 文本行中各列打亂:awk ‘BEGIN{srand()}{for(i=1;i<=NF;i++) b[rand()NF]=$i}END{for(x in
Time of Update: 2014-08-01
標籤:使用 strong io 檔案 問題 ar 時間 應用 最近在梳理bash知識的的過程中,有幸閱讀了man bash文檔,一時間猶如醍醐灌頂一般,很多當初不明白的地方都豁然開朗,現在就其中的一點做一分享,同時也為man
Time of Update: 2014-07-31
標籤:shellshell中有些符號在不同界定下會被不同處理,界定主要有3種方式:(1)單引號(2)雙引號(3)反引號我們最常用的就是雙引號和單引號,對於這2個符號,用$變數可以很清楚的說明它們的區別,如下:[[email protected] ~]$ echo ‘Home is $HOME‘Home is $HOME[[email protected] ~]$ echo "Home is $HOME"Home is
Time of Update: 2014-07-30
標籤:style blog http color 使用 os strong 檔案 shell script 入門 在 shell script 的撰寫中還需要用到底下的注意事項:1.
Time of Update: 2014-07-29
標籤:http 使用 os strong 檔案 io for 2014 本文參考自《Unix/Linux編程實踐教程》,
Time of Update: 2014-07-28
標籤:blog http 使用 os 檔案 資料 ar file hadoop fs 列出所有的命令hadoop fs -help ls 列出某個命令的詳細資料hadoop dfs -mkdir /data/
Time of Update: 2014-07-28
標籤:shell - 函數、數組定義與調用#!/bin/bash# returning an array valuefunction arraydblr(){ local origarray local newarray local elements local i
Time of Update: 2014-07-27
標籤:shellShell命令sshpass非互動SSH密碼驗證#安裝sshpasssshpass:http://sourceforge.net/projects/sshpass/ 下載為一個 tar.gz的壓縮包。$ tar -zxvf sshpass-1.05.tar.gz$ cd sshpass-1.05$ ./configure --prefix=/opt/sshpass #指定安裝目錄$ make$ make install$ cp
Time of Update: 2014-07-26
標籤:continue while break function break:退出迴圈體continue:結束本次迴圈,進入下一次迴圈。while特殊用法1:while :dodone上述為while的死迴圈。while特殊用法2:while read LINEdodone < /path/to/FILE作
Time of Update: 2014-07-31
Linux下常用的shell命令記錄,linuxshell命令硬體篇CPU相關lscpu #查看的是cpu的統計資訊.cat /proc/cpuinfo #查看CPU資訊詳細資料,如每個CPU的型號,主頻等記憶體相關free -m #概要查看記憶體情況 這裡的單位是MBcat /proc/meminfo #查看記憶體詳細資料磁碟相關lsblk
Time of Update: 2014-07-26
(linux shell)第二章--命令之樂(一),linuxshell文章來自於我的個人部落格:(linux shell)第二章--命令之樂(一) 上一章我們描述了一些linux shell中需要注意的一些文法,接下來我們開始瞭解linux shell的常用命令。let's go...cat 命令:cat本身表示拼接(concatenate)。cat命令有一些常用參數,像-n,-s等,我們下面逐一介紹:如果你想快速查看一個文字檔內容,就可以使用cat命令:cat