发布网友 发布时间: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}