Linux實用命令彙總(持續更新 )

2021-08-25 17:49:50 字數 641 閱讀 5135

經常會為某個簡單的命令名google,baidu,於是覺得有必要自己開個頁面,持續的更新這些命令。

命令:

argc=$#
使用例子:

if [ $# -ne 1 ] then

echo "usage: $0 tabname";

echo "e.g.: $0 cdr_20110114";

exit 1;

fi

命令:

find ./ -type f
實用例子:列印當前目錄下所有以.o為字尾的檔案。

find ./ -type f | grep ".*\.o$"
命令:

sudo nautilus &
命令:

history
實用例子,檢視近期輸入過的configure命令:

history | grep configure
ls -l /dev/disk/by-uuid/
wget -r -p -np -k
-np, --no-parent                 不追溯至父目錄。

lsb_release -a
或者

cat /etc/issue

Linux實用命令(持續更新)

1.grep檔案內容查詢命令 grep n i r test n顯示行號 i忽略大小寫 r遞迴查詢 當前目錄下查詢含有 test 的內容 grep預設非絕對匹配,區分大小寫 2.find檔案名字查詢命令 find name test 在當前目錄下遞迴查詢名字為 test.c 的檔案 find預設絕對...

Docker實用命令(持續更新 )

docker builder options path url 用於使用dockerfile建立映象 f 指定要使用的dockerfile路徑 isolation 使用容器隔離技術 m 設定記憶體最大值 no cache 建立映象過程中不適用快取 pull 嘗試去更新映象的新版本 q 安靜模式,成功...

linux實用命令個人總結 持續更新

1 getconf long bit 檢視linux系統位數,當然通過uname a 也可以,不過這個命令更專業 2 netstat tunlp grep 80 檢視80埠被哪個程序監聽 3 kill 9 pid 強制殺死程序 4 pidof exefilename 顯示exefilename的程序...