# %% alpha_run.sh


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting # %% alpha_run.sh
# 1  
Old 12-31-2007
CPU & Memory # %% 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
# 2  
Old 12-31-2007
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"
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question