使用Linux時經常用到的指令

2021-10-01 02:49:29 字數 1257 閱讀 1751

1.複製

cp 原目標檔案路徑/檔名 目標路徑

cp -r 源目錄 目標目錄

2.cd

cd ..返回上一級目錄

cd ../..返回上兩級目錄

cd / 進入根目錄

cd - 返回進入此目錄之前所在的目錄

3.顯示程序

ps -ef|grep tomcat

grep是搜尋的意思

ps -ef 顯示所有程序

4.殺死程序

kill -9 【pid】 pid:程序id

5.檢視執行日誌

tail -f catalina.out

6.開啟編輯器

vi xx

7.解壓

unzip hello.war

unzip hello.war -d hello

tar -xvf hello.tar

8.壓縮

tar -czvf hello.tar.gz hello world 將hello和world檔案打包並壓縮

z是gzip壓縮

j是bzip2壓縮

9.刪除

rm hello.txt

rm -rf 檔名

有遇到其他的再更新

檢視字尾型別:

find . -name ""|sed 's#./##』|awk -f 『.』 『』|awk 『}』|sort|uniq

12.統計資料夾下目錄個數

ls -l ./|grep 「^-」|wc -l

統計檔案個數:

ls -lr | grep 「^-」| wc -l

授權:chmod a+x

修改資料夾所屬使用者

chown -r root data

切換使用者:

su - root

yum安裝gcc

yum -y install gcc

進入資料庫:

mysql -u root -p123456

show variables like 』 』

執行sql檔案

mysql>use 資料庫;

mysql>source 絕對路徑

使用odoo時經常用到的屬性

隱藏字段 在某種條件下隱藏 隱藏標籤 唯讀readonly 條件域 設定值eval 表單傳值context 以default 開始代表直接賦值過去 amany2one小部件 預設 one2many樹 name basic incidentals mode tree nolabel 1 create ...

AT指令時經常用到 c語言庫函式

1 查詢對應的字串 char p data null 找到 test rxlora 這個首位址 p data strstr const char re data,test rxlora 查詢十進位制數值 int lora rssi rssi cnt if sscanf p data,test rxl...

Linux的常用指令(自己經常用到的)

依託s10缺陷檢測專案,需要在linux下開發,常用的指令現在需要記一下,現在按專案進度記流水賬一樣記錄 方便今後檢視。ssh遠端控制相關 sudo apt get install openssh server service sshd start通訊相關 查詢本機網路屬性,後面可以接乙太網名稱et...