主頁(yè) > 知識(shí)庫(kù) > Shell腳本批量添加擴(kuò)展名的兩種方法分享

Shell腳本批量添加擴(kuò)展名的兩種方法分享

熱門標(biāo)簽:地圖標(biāo)注超出范圍怎么辦 百度地圖標(biāo)注圖標(biāo)更換 百度地圖的地圖標(biāo)注 excel地址地圖標(biāo)注 杭州機(jī)器人外呼系統(tǒng) 佛山高德地圖標(biāo)注中心 陜西電銷卡外呼系統(tǒng)怎么安裝 旅游地圖標(biāo)注大全 東莞電銷機(jī)器人價(jià)格一覽表

方法1:

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

for file in  `ls`; do mv $file $file.txt; done

方法2:

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

find . -type f |xargs -i mv {} {}.txt

還有一些試驗(yàn)不成功的,先記錄在此。

1.用rename命令修改后綴名,這個(gè)是最簡(jiǎn)單最省事的辦法

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

[root@demo test_rename]# ll

總計(jì) 20

-rw-r–r– 1 root root 0 09-27 00:57 rename1.log

-rw-r–r– 1 root root 0 09-27 00:57 rename2.log

-rw-r–r– 1 root root 0 09-27 00:57 rename3.log

-rw-r–r– 1 root root 0 09-27 00:57 rename4.log

-rw-r–r– 1 root root 0 09-27 00:57 rename5.log

[root@demo test_rename]# rename log txt *.log #把*.log改為*.txt

[root@demo test_rename]# ll

總計(jì) 20

-rw-r–r– 1 root root 0 09-27 00:57 rename1.txt

-rw-r–r– 1 root root 0 09-27 00:57 rename2.txt

-rw-r–r– 1 root root 0 09-27 00:57 rename3.txt

-rw-r–r– 1 root root 0 09-27 00:57 rename4.txt

-rw-r–r– 1 root root 0 09-27 00:57 rename5.txt

[root@demo test_rename]# 

2.用for、sed和mv修改后綴名

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

[root@demo test_rename]# ll

總計(jì) 20

-rw-r–r– 1 root root 0 09-27 01:51 rename1.log

-rw-r–r– 1 root root 0 09-27 01:21 rename2.log

-rw-r–r– 1 root root 0 09-27 01:21 rename3.log

-rw-r–r– 1 root root 0 09-27 01:21 rename4.log

-rw-r–r– 1 root root 0 09-27 01:21 rename5.log

[root@demo test_rename]# for i in $(ls .)

> do

> mv $i $(echo $i|sed ‘s/\.log/\.txt/')

> done

[root@demo test_rename]# ll

總計(jì) 20

-rw-r–r– 1 root root 0 09-27 01:51 rename1.txt

-rw-r–r– 1 root root 0 09-27 01:21 rename2.txt

-rw-r–r– 1 root root 0 09-27 01:21 rename3.txt

-rw-r–r– 1 root root 0 09-27 01:21 rename4.txt

-rw-r–r– 1 root root 0 09-27 01:21 rename5.txt

[root@demo test_rename]#

3.用find和xargs添加后綴名

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

[root@demo test_rename]# ll

總計(jì) 20

-rw-r–r– 1 root root 0 09-27 02:20 rename1

-rw-r–r– 1 root root 0 09-27 02:20 rename2

-rw-r–r– 1 root root 0 09-27 02:20 rename3

-rw-r–r– 1 root root 0 09-27 02:20 rename4

-rw-r–r– 1 root root 0 09-27 02:20 rename5

[root@demo test_rename]# find . -type f |xargs -i mv {} {}.txt

[root@demo test_rename]# ll

總計(jì) 20

-rw-r–r– 1 root root 0 09-27 02:20 rename1.txt

-rw-r–r– 1 root root 0 09-27 02:20 rename2.txt

-rw-r–r– 1 root root 0 09-27 02:20 rename3.txt

-rw-r–r– 1 root root 0 09-27 02:20 rename4.txt

-rw-r–r– 1 root root 0 09-27 02:20 rename5.txt

[root@demo test_rename]#

標(biāo)簽:雅安 朝陽(yáng) 南充 西藏 延邊 隨州 青島 通遼

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Shell腳本批量添加擴(kuò)展名的兩種方法分享》,本文關(guān)鍵詞  Shell,腳本,批量,添加,擴(kuò)展名,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Shell腳本批量添加擴(kuò)展名的兩種方法分享》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于Shell腳本批量添加擴(kuò)展名的兩種方法分享的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章