ฉันไม่รู้ว่าวิธีนี้ / แฮ็คจะใช้ได้หรือไม่สำหรับกรณีของคุณ แต่ฉันคิดว่ามันจะใช้ได้ถ้าฉันทำให้คุณถูก
[feddy@localhost ~]$ mkdir test
[feddy@localhost ~]$ cd test
[feddy@localhost test]$ ls
[feddy@localhost test]$ vi 0001-ko.sh
[feddy@localhost test]$ cp 0001-ko.sh 0002-ko.sh
[feddy@localhost test]$ cp 0001-ko.sh 0004-ko.sh
[feddy@localhost test]$ cp 0001-ko.sh 0005-ko file.sh
[feddy@localhost test]$ cp 0001-ko.sh 0008-ko.sh
[feddy@localhost test]$ ls
0001-ko.sh 0002-ko.sh 0004-ko.sh 0005-ko file.sh 0008-ko.sh
[feddy@localhost test]$ for i in *
> do
> bash "$i"
> done
file 0001-ko.sh
file 0002-ko.sh
file 0004-ko.sh
file 0005-ko file.sh
file 0008-ko.sh
[feddy@localhost test]$
หรือ
$ find . -iname "*.sh"|while read f; do bash "$f"; done
file ./0001-ko1.sh
file ./0002-ko1.sh
file ./0005-ko1 file.sh
file ./0005-ko1.sh
คุณสามารถสร้างสคริปต์และใช้สคริปต์นี้เพื่อดำเนินการสคริปต์ตามลำดับ (ตามหมายเลขที่รวมอยู่ในชื่อไฟล์เช่น xxxx-abcdef) ในโฟลเดอร์ใด ๆ
โปรดแก้ไขให้ฉันด้วยถ้าฉันทำให้คุณผิด
/etc/rc?.d
ไดเรกทอรีหรือไม่?