Results 1 to 3 of 3
Hi,
I'm debugging a shell program, I came across following line,
@BATCH_ROOT@/batch_scripts/insert_record.sh
It executes insert_record.sh files.
But i not sure about the meaning of @BATCH_ROOT@
In ksh the symbol @ ...
- 07-14-2008 #1
what's the meaning of @ symbol in ksh???
Hi,
I'm debugging a shell program, I came across following line,
@BATCH_ROOT@/batch_scripts/insert_record.sh
It executes insert_record.sh files.
But i not sure about the meaning of @BATCH_ROOT@
In ksh the symbol @ represents what?
Does it denote some environmental variable?- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 07-14-2008 #2
It seems to introduce a regular expression.
Learning the Korn Shell, 2nd Edition: Chapter 4: Basic Shell Programming
I assume there are several possibilities in which base directory insert_record can reside. And the @ says the shell should try every path in the variable BATCH_ROOT.
- 07-16-2008 #3
I'll check out the link ...
Thanks GNU-Fan- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------


Reply With Quote