Bilmiyorum, ya bu yöntem / kesmek işe ya da senin durum için işe yaramaz. Ama, eğer seni doğru anladıysam bunun işe yarayacağını düşünüyorum.
[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]$
VEYA
$ 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
Bir komut dosyası oluşturabilir ve herhangi bir klasördeki komut dosyalarını sırayla (dosya adında bulunan numaralara göre, yani xxxx-abcdef) yürütmek için kullanabilirsiniz.
Lütfen beni düzeltin Eğer yanlış yaparsam.
/etc/rc?.d
Dizinlerde olan çalışma düzeyi komut dosyalarını mı düşünüyorsunuz ?