# %% alpha_run.sh

Hi All,

In my script 3rd line it was mentioned the file name following with # %% charecters. Please let me know what is use of this. The code is here.

#! /bin/posix/sh
#
# %% alpha_run.sh
#
#
#

Thq's & Reg's
maddy

The line you want to know about is just a comment. When a line starts with a #, all subseuqent characters are totally ignored by the shell.

The VERY first line is different. The #! is a so-called magic number that tells the current shell to invoke whatever comes after #! -- in your case it executes "/bin/posix/sh"