su
切換到另一使用者
whoami(or who am i)
顯示當前使用者
man
檢視其它命令的用法
cp -rf src desc
目錄拷貝
rm -rf src
目錄刪除
emacs
啟動emacs編輯器
netstat
顯示網路狀態
vmstat
顯示虛擬記憶體狀態
iostat
顯示輸入/輸出狀態
echo
將字串寫入到標準輸出
ping
測試網路,ping不僅僅是windows下的命令,在unix和linux下也有這個命令
more
多屏檔案檢視
which/whereis
basically, whereis searches for "possibly useful" files, while which only searches for executables.
i rarely use whereis. on the other hand, which is very useful, specially in scripts. which is the answer for the following question: where does this command come from?
$ which ls
/bin/ls
$ whereis ls
ls: /bin/ls /usr/share/man/man1p/ls.1p.bz2 /usr/share/man/man1/ls.1.bz2
wget
wget
wget -i download.txt
安裝:configure, make, make install
refer:
git常用命令 逐漸補充完善
一 git 安裝 要先安裝git依賴的一些庫,比如curl等,在上面網頁可以看到git依賴的包 tar zxvf git 1.9.4 configure prefix with curl yy curl make make install 二 git命令 git remote v 檢視所clone的...
Unix命令使用小薈萃 補充中
1.得到以變數值作為新變數名的值,也就是說變數名都是動態的。set a abc set abc say hello eval echo a 結果 say hello set a bb set bb hello eval echo a 結果 hello 2.判斷變數是否被定義 set a 123 ec...
常用的unix命令
這一篇專門整理一下常用的unix命令,以方便查閱 1.echo 將文字的內容列印到螢幕上,以helloworld為例。我試過了 echo helloworld,echo helloworld echo helloworld 列印出來都是一樣的,且都沒有符號,暫時不知道為什麼,哪一種是絕對正確的 2....