linux常用命令(待更新)

2021-09-03 09:00:04 字數 399 閱讀 1499

1.建立root新密碼

sudo passwd

2.使用rm -rf 目錄名字 命令即可

-r 就是向下遞迴,不管有多少級目錄,一併刪除

-f 就是直接強行刪除,不作任何提示的意思

刪除資料夾例項:rm -rf /var/log/httpd/access

將會刪除/var/log/httpd/access目錄以及其下所有檔案、資料夾

刪除檔案使用例項:rm -f /var/log/httpd/access.log

將會強制刪除/var/log/httpd/access.log這個檔案

3.檔案或資料夾重新命名

mv 舊檔名 新檔名即可

4.建立資料夾及檔案

mkdir建立資料夾

vi 建立檔案

curl 常用命令 待更新

這個是寫的curl的指令碼,很精彩,必看 linux 下使用 curl 訪問帶多引數,get掉引數解決方案 shell 執行curl傳post 資料中的變數 curl i www.baidu.com 僅僅檢視鏈結的請求頭 curl connect timeout 15 max time 30 hea...

linux常用命令(待完善)

1.解壓縮命令。針對.tar.xz檔案解壓方法 1 xz d tar.xz 2 tar xvf tar。針對.tar.bz2檔案解壓方法 tar jxvf tar.bz2 針對.zip檔案解壓方法 unzip zip 針對.deb檔案的解壓方法 dpkg deb fsys tarhellos deb...

Linux常用命令(更新中)

檔案類 1 建立資料夾 mkdir 例 sudo mkdir test 2 建立空檔案 touch 例 sudo touch test.txt 3 刪除檔案 rm 刪除檔案不需要確認 rm f 例 sudo rm f test.txt 遞迴刪除資料夾及子檔案 rm r 例 sudo rm r tes...