六月丁香五月婷婷,丁香五月婷婷网,欧美激情网站,日本护士xxxx,禁止18岁天天操夜夜操,18岁禁止1000免费,国产福利无码一区色费

學(xué)習(xí)啦>學(xué)習(xí)電腦>操作系統(tǒng)>Linux教程>

linux的刪除命令

時(shí)間: 佳洲1085 分享

  Linux系統(tǒng)下我們經(jīng)常使用到刪除操作,那么它是由哪個(gè)命令發(fā)起的呢?面由學(xué)習(xí)啦小編為大家整理了linux的刪除命令的相關(guān)知識(shí),希望對(duì)大家有幫助!

  linux的刪除命令詳解

  rm是常用的命令,該命令的功能為刪除一個(gè)目錄中的一個(gè)或多個(gè)文件或目錄,它也可以將某個(gè)目錄及其下的所有文件及子目錄均刪除。對(duì)于鏈接文件,只是刪除了鏈接,原有文件均保持不變。

  rm是一個(gè)危險(xiǎn)的命令,使用的時(shí)候要特別當(dāng)心,尤其對(duì)于新手,否則整個(gè)系統(tǒng)就會(huì)毀在這個(gè)命令(比如在/(根目錄)下執(zhí)行rm * -rf)。所以,我們?cè)趫?zhí)行rm之前最好先確認(rèn)一下在哪個(gè)目錄,到底要?jiǎng)h除什么東西,操作時(shí)保持高度清醒的頭腦。

  1.命令格式:

  rm [選項(xiàng)] 文件…

  2.命令功能:

  刪除一個(gè)目錄中的一個(gè)或多個(gè)文件或目錄,如果沒有使用- r選項(xiàng),則rm不會(huì)刪除目錄。如果使用 rm 來刪除文件,通常仍可以將該文件恢復(fù)原狀。

  3.命令參數(shù):

  -f, --force 忽略不存在的文件,從不給出提示。

  -i, --interactive 進(jìn)行交互式刪除

  -r, -R, --recursive 指示rm將參數(shù)中列出的全部目錄和子目錄均遞歸地刪除。

  -v, --verbose 詳細(xì)顯示進(jìn)行的步驟

  --help 顯示此幫助信息并退出

  --version 輸出版本信息并退出

  linux的刪除命令實(shí)例

  實(shí)例一:刪除文件file,系統(tǒng)會(huì)先詢問是否刪除。

  命令:

  rm 文件名

  輸出:

  [root@localhost test1]# ll

  總計(jì) 4

  -rw-r--r-- 1 root root 56 10-26 14:31 log.log

  root@localhost test1]# rm log.log

  rm:是否刪除 一般文件 “log.log”? y

  root@localhost test1]# ll

  總計(jì) 0[root@localhost test1]#

  說明:

  輸入rm log.log命令后,系統(tǒng)會(huì)詢問是否刪除,輸入y后就會(huì)刪除文件,不想刪除則數(shù)據(jù)n。

  實(shí)例二:強(qiáng)行刪除file,系統(tǒng)不再提示。

  命令:

  rm -f log1.log

  輸出:

  [root@localhost test1]# ll

  總計(jì) 4

  -rw-r--r-- 1 root root 23 10-26 14:40 log1.log

  [root@localhost test1]# rm -f log1.log

  [root@localhost test1]# ll

  總計(jì) 0[root@localhost test1]#

  實(shí)例三:刪除任何.log文件;刪除前逐一詢問確認(rèn)

  命令:

  rm -i *.log

  輸出:

  [root@localhost test1]# ll

  總計(jì) 8

  -rw-r--r-- 1 root root 11 10-26 14:45 log1.log

  -rw-r--r-- 1 root root 24 10-26 14:45 log2.log

  [root@localhost test1]# rm -i *.log

  rm:是否刪除 一般文件 “log1.log”? y

  rm:是否刪除 一般文件 “log2.log”? y

  [root@localhost test1]# ll

  總計(jì) 0[root@localhost test1]#

  實(shí)例四:將 test1子目錄及子目錄中所有檔案刪除

  命令:

  rm -r test1

  輸出:

  復(fù)制代碼代碼如下:

  [root@localhost test]# ll

  總計(jì) 24drwxr-xr-x 7 root root 4096 10-25 18:07 scf

  drwxr-xr-x 2 root root 4096 10-26 14:51 test1

  drwxr-xr-x 3 root root 4096 10-25 17:44 test2

  drwxrwxrwx 2 root root 4096 10-25 17:46 test3

  drwxr-xr-x 2 root root 4096 10-25 17:56 test4

  drwxr-xr-x 3 root root 4096 10-25 17:56 test5

  [root@localhost test]# rm -r test1

  rm:是否進(jìn)入目錄 “test1”? y

  rm:是否刪除 一般文件 “test1/log3.log”? y

  rm:是否刪除 目錄 “test1”? y

  [root@localhost test]# ll

  總計(jì) 20drwxr-xr-x 7 root root 4096 10-25 18:07 scf

  drwxr-xr-x 3 root root 4096 10-25 17:44 test2

  drwxrwxrwx 2 root root 4096 10-25 17:46 test3

  drwxr-xr-x 2 root root 4096 10-25 17:56 test4

  drwxr-xr-x 3 root root 4096 10-25 17:56 test5

  [root@localhost test]#

  實(shí)例五:rm -rf test2命令會(huì)將 test2 子目錄及子目錄中所有檔案刪除,并且不用一一確認(rèn)

  命令:

  rm -rf test2

  輸出:

  復(fù)制代碼代碼如下:

  [root@localhost test]# rm -rf test2

  [root@localhost test]# ll

  總計(jì) 16drwxr-xr-x 7 root root 4096 10-25 18:07 scf

  drwxrwxrwx 2 root root 4096 10-25 17:46 test3

  drwxr-xr-x 2 root root 4096 10-25 17:56 test4

  drwxr-xr-x 3 root root 4096 10-25 17:56 test5

  [root@localhost test]#

  實(shí)例六:刪除以 -f 開頭的文件

  命令:

  rm -- -f

  輸出:

  復(fù)制代碼代碼如下:

  [root@localhost test]# touch -- -f

  [root@localhost test]# ls -- -f

  -f[root@localhost test]# rm -- -f

  rm:是否刪除 一般空文件 “-f”? y

  [root@localhost test]# ls -- -f

  ls: -f: 沒有那個(gè)文件或目錄

  [root@localhost test]#

  也可以使用下面的操作步驟:

  [root@localhost test]# touch ./-f

  [root@localhost test]# ls ./-f

  ./-f[root@localhost test]# rm ./-f

  rm:是否刪除 一般空文件 “./-f”? y

  [root@localhost test]#

  實(shí)例七:自定義回收站功能

  命令:

  myrm(){ D=/tmp/$(date +%Y%m%d%H%M%S); mkdir -p $D; mv "$@" $D && echo "moved to $D ok"; }

  輸出:

  復(fù)制代碼代碼如下:

  [root@localhost test]# myrm(){ D=/tmp/$(date +%Y%m%d%H%M%S); mkdir -p $D; mv "$@" $D && echo "moved to $D ok"; }

  [root@localhost test]# alias rm='myrm'

  [root@localhost test]# touch 1.log 2.log 3.log

  [root@localhost test]# ll

  總計(jì) 16

  -rw-r--r-- 1 root root 0 10-26 15:08 1.log

  -rw-r--r-- 1 root root 0 10-26 15:08 2.log

  -rw-r--r-- 1 root root 0 10-26 15:08 3.log

  drwxr-xr-x 7 root root 4096 10-25 18:07 scf

  drwxrwxrwx 2 root root 4096 10-25 17:46 test3

  drwxr-xr-x 2 root root 4096 10-25 17:56 test4

  drwxr-xr-x 3 root root 4096 10-25 17:56 test5

  [root@localhost test]# rm [123].log

  moved to /tmp/20121026150901 ok

  [root@localhost test]# ll

  總計(jì) 16drwxr-xr-x 7 root root 4096 10-25 18:07 scf

  drwxrwxrwx 2 root root 4096 10-25 17:46 test3

  drwxr-xr-x 2 root root 4096 10-25 17:56 test4

  drwxr-xr-x 3 root root 4096 10-25 17:56 test5

  [root@localhost test]# ls /tmp/20121026150901/

  1.log 2.log 3.log

  [root@localhost test]#

  說明:

  上面的操作過程模擬了回收站的效果,即刪除文件的時(shí)候只是把文件放到一個(gè)臨時(shí)目錄中,這樣在需要的時(shí)候還可以恢復(fù)過來。

linux的刪除命令

Linux系統(tǒng)下我們經(jīng)常使用到刪除操作,那么它是由哪個(gè)命令發(fā)起的呢?面由學(xué)習(xí)啦小編為大家整理了linux的刪除命令的相關(guān)知識(shí),希望對(duì)大家有幫助! linux的刪除命令詳解 rm是常用的命令,該命令的功能為刪除一個(gè)目錄中的一個(gè)或多個(gè)文件或目錄
推薦度:
點(diǎn)擊下載文檔文檔為doc格式

上一篇:linux的清屏命令

下一篇:linux的停止命令

精選文章

  • linux的清屏命令
    linux的清屏命令

    Windows下的清屏命令大家都知道,那么linux下的清屏要怎么辦呢?下面由學(xué)習(xí)啦小編為大家整理了linux的清屏命令的相關(guān)知識(shí),希望對(duì)大家有幫助! linux的清屏命

  • linux的模塊操作命令
    linux的模塊操作命令

    Linux是基于模塊的,因此掌握模塊操作命令是尤其重要的部分。下面由學(xué)習(xí)啦小編為大家整理了linux的模塊操作命令的相關(guān)知識(shí),希望對(duì)大家有幫助! linux的

  • linux的命令whois
    linux的命令whois

    Linux系統(tǒng)下whois命令的主要功能是查找并顯示用戶信息,下面由學(xué)習(xí)啦小編為大家整理了linux的whois命令的相關(guān)知識(shí),希望對(duì)大家有幫助! linux的whois命令詳解

  • linux的路由追蹤命令
    linux的路由追蹤命令

    Linux系統(tǒng)下traceroute命令用來追蹤網(wǎng)絡(luò)數(shù)據(jù)包的路由路徑,下面由學(xué)習(xí)啦小編為大家整理了linux的路由追蹤命令的相關(guān)知識(shí),希望對(duì)大家有幫助! linux路由追蹤

3625315