আমি জানি না, হয় এই পদ্ধতি / হ্যাকটি কাজ করবে না আপনার মামলার জন্য। তবে, আমি মনে করি আপনি সঠিকভাবে পেলে এটি কাজ করবে।
[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
ডিরেক্টরিতে থাকা রানলেভেল স্ক্রিপ্টগুলির কথা ভাবছেন ?