首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

linux创建50个文件,file01...file50如何将文件名称改为大小的FILE01..

发布网友 发布时间:2022-04-23 13:30

我来回答

2个回答

热心网友 时间:2023-10-15 18:43

[root@wvm5 test]# touch file{01..10}
[root@wvm5 test]# ll
total 0
-rw-r--r-- 1 root root 0 Sep 17 02:16 file01
-rw-r--r-- 1 root root 0 Sep 17 02:16 file02
-rw-r--r-- 1 root root 0 Sep 17 02:16 file03
-rw-r--r-- 1 root root 0 Sep 17 02:16 file04
-rw-r--r-- 1 root root 0 Sep 17 02:16 file05
-rw-r--r-- 1 root root 0 Sep 17 02:16 file06
-rw-r--r-- 1 root root 0 Sep 17 02:16 file07
-rw-r--r-- 1 root root 0 Sep 17 02:16 file08
-rw-r--r-- 1 root root 0 Sep 17 02:16 file09
-rw-r--r-- 1 root root 0 Sep 17 02:16 file10
[root@wvm5 test]# for filename in $( ls ); do filenameupcase=`echo ${filename} | tr a-z A-Z `; mv $filename $filenameupcase; done
[root@wvm5 test]# ll
total 0
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE01
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE02
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE03
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE04
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE05
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE06
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE07
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE08
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE09
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE10

热心网友 时间:2023-10-15 18:43

touch FILE{01..50}

热心网友 时间:2023-10-15 18:43

[root@wvm5 test]# touch file{01..10}
[root@wvm5 test]# ll
total 0
-rw-r--r-- 1 root root 0 Sep 17 02:16 file01
-rw-r--r-- 1 root root 0 Sep 17 02:16 file02
-rw-r--r-- 1 root root 0 Sep 17 02:16 file03
-rw-r--r-- 1 root root 0 Sep 17 02:16 file04
-rw-r--r-- 1 root root 0 Sep 17 02:16 file05
-rw-r--r-- 1 root root 0 Sep 17 02:16 file06
-rw-r--r-- 1 root root 0 Sep 17 02:16 file07
-rw-r--r-- 1 root root 0 Sep 17 02:16 file08
-rw-r--r-- 1 root root 0 Sep 17 02:16 file09
-rw-r--r-- 1 root root 0 Sep 17 02:16 file10
[root@wvm5 test]# for filename in $( ls ); do filenameupcase=`echo ${filename} | tr a-z A-Z `; mv $filename $filenameupcase; done
[root@wvm5 test]# ll
total 0
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE01
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE02
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE03
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE04
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE05
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE06
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE07
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE08
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE09
-rw-r--r-- 1 root root 0 Sep 17 02:16 FILE10

热心网友 时间:2023-10-15 18:43

touch FILE{01..50}

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com