How to check file permissions from a script.

hello,

I have to write a script to run the other script inside it.So iam planning to write like this?
first check the perimissions of the file.
Alogorthim
----------
if(!filepermissions == execute)
then
echo" Permissions denined"
else
execute the script.
file name is : load_mf.sh
home dir is :/ame/gcs/abs/mm.
So can help to write a script for this.My question is how to check file permissions in side the script of other file.

Please help to write this script...Its urgent to me.
I am looking forward from you.:b:

Thanks & Regards
rajkumar g

Try:

if [ -x file ] ; then

(see "man test")