shell script to call other files..plz help

Hi all,
I have a number of shell script,perl script.. etc in a directory,which i need to execute in some order.Now i need to create a script to call all these files in that order..so that the new script will execute all the files one by one....plz help this is urgent.

Thanks In advance

Anju

Whatever scripts you want to run, write them in a file - the way you would execute them at command line

Write them in the order in which you want to execute them

Your file may look like:

#!/bin/sh
script_01.sh
script_02.sh
script_03.pl

and then run the file (its basically another shell script) that you have created

Check out the permissions of the scripts,if they are not executable then change the permissions and run it as Yogesh suggested.

yes, and the first line in the scripts should begin with #! (something like #!/bin/bash or #!/usr/bin/perl - depending on the shell / language that you are using)