一些簡單的命令

2022-02-24 19:58:01 字數 1188 閱讀 6592

1、壓縮:gzip test.txt 結果 test.txt.gz

解壓:gunzip test.txt.gz 結果test.txt

壓縮 :bzip2 -k 檔名稱

2、建立目錄 :mkdir

3、建立檔案:vi 檔名稱 或 vim 檔名稱 或 touch

4、檢視檔案:vim 檔名稱

5、複製:cp 後面寫路徑 同級就不用寫了   命令 :cp  檔名  目錄 (把檔案複製到目錄中)

6、刪除所有以txt結尾的字尾:find -name '*.txt'|xargs rm -rf

7、檢視檔案命令:ls -lh(ls -lh)或ll(ll)或 ls -a

8、許可權為最高是:chmod 777 test.txt

chmod -r 755 test.txt

9、刪除:rm -rf 檔名稱

10、計算 |bc

11、linux下配置虛擬主機後重啟apache的命令是 :service httpd start

12、關機命令:1、power off 2、init 0 3、halt 4、shutdown -h now

13、檢視檔案命令:1、cat 2、more 3、tail 4、head

14、①將乙個名為abc.txt的檔案重新命名為1234.txt

1[root@station90 root]#mv abc.txt 1234.txt

②將目錄a重新命名為b

1[root@station90 root]#mv a b

③將a.txt移動到/b下,並重命名為c.txt

1[root@station90 root]#mv a.txt /b/c.txt

15、建立使用者 :useradd 使用者名稱    設定密碼:passwd  密碼    刪除使用者  :userdel 使用者名稱

16、將a目錄隱藏      命令:mv a .a    

重新命名  : mv  檔名  結果檔案

顯示所有檔案(包含隱藏檔案)   ls -a

只顯示隱藏檔案   l.  或者   ls -d .*

17、rz上傳

18、查詢索引的命令是show index from test;

test是表名

Linux的一些簡單命令

ctrl alt f1到f6開終端 ctrl alt f7回到gui tab自動補全命令列 命令名 h獲得幫助 cd進目錄 cd 目錄名 cd 上級目錄 dir列目錄 dir 目錄名 whoami 檢視當前登陸使用者 su登入名 切換登陸使用者 根目錄 home使用者組目錄 目錄顏色為深藍色 d代表...

一些簡單的git命令

安裝完git後,進行的一些設定 為本機的倉庫指定使用者名稱和email位址 git config global user.name your name git config global user.email email example.com 建立版本庫 切換到乙個合適的空目錄下,然後把這個目錄變...

redis的一些簡單的命令

string型別 set key value設定 get key獲取 getset key value 獲取值並且將原來儲存的值改為value keys 所有的鍵 mset key value key value 設定多組鍵值 mget key key 獲取多組鍵值 incr key 數值遞增 de...