LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > Programming
User Name
Password
Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.

Notices


Reply
  Search this Thread
Old 02-18-2012, 01:44 PM   #1
bracken84
LQ Newbie
 
Registered: Feb 2012
Location: Colorado
Distribution: Too many.
Posts: 5

Rep: Reputation: Disabled
Post ksh scripting: dynamic variable naming


I have written a script for ksh successfully. This question is about using variables to name other variables on an echo command to validate my work, without having to hard-code each test output.

The script gathers information about folders in the current working directory and exports environment variables with the absolute path to those directories stored in each respectively. This is mainly accomplished by using a for loop and a counter. The test environment is a folder with two sub directories, call them dirA and dirB. When creating the environment variables for each of these directories, I use the same counter variable inside the for loop to name them:

Code:
export DIRECTORY"$COUNTER"=$PATHTOSUBDIR
The above code is executed before the line of code I am stuck on. I want to write an echo statement which will appear after the export statement, which will call the newly exported environment variable dynamically, in the same way I created the environment variable. Problem is, I'm stuck on syntax, single/double quotes and substitution syntax and I can't figure out how to do this. The line could look something like this:

Code:
echo $DIRECTORY$COUNTER
This way, if $COUNTER is set to 10 and I just exported DIRECTORY10, the echo statement will output the path stored in that variable each time the loop iterates. The above code is incorrect syntactically. The idea is to make this script dynamic, i.e. usable on folders with 1 or 1000 sub-folders, without having to hard-code the echo statement (the test).

Is there someone here who knows how I could write an echo statement that will correctly output the new environment variable for the current iteration of the for loop?

I hope this isn't too convoluted, its just a syntax question. Thanks in advance
 
Old 02-18-2012, 01:54 PM   #2
Nominal Animal
Senior Member
 
Registered: Dec 2010
Location: Finland
Distribution: Xubuntu, CentOS, LFS
Posts: 1,723
Blog Entries: 3

Rep: Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948
Assuming you use KSH-93: Create a name reference variable, say
Code:
typeset -n nameref="DIRECTORY$COUNTER"
Then, using $nameref actually evaluates to the value in variable DIRECTORY$COUNTER (but with $COUNTER already evaluated at typeset time).

Did I understand your problem correctly?
 
Old 02-18-2012, 03:23 PM   #3
bracken84
LQ Newbie
 
Registered: Feb 2012
Location: Colorado
Distribution: Too many.
Posts: 5

Original Poster
Rep: Reputation: Disabled
My goal is to echo the environment variable I export/create using the counter. Creating a reference variable is creating a new variable to echo, so this solution is not quite what I am looking for.

Code:
typeset -i COUNTER
let COUNTER=0
while [[ $COUNTER < $NUMDIRS ]] ; do
let COUNTER=$COUNTER+1 CHILDDIR=<series of commands to get the path> echo $CHILDDIR export DIR"$COUNTER"=$CHILDDIR echo $DIR$COUNTER
done
It's that last line that does not evaluate correctly. For instance, if the loop creates/exports DIR324, I want the last line to output the contents of that same variable, $DIR324, to verify that the environment variable I created works. I do not want to create a new variable.

Maybe I'm making this harder than it needs to be, but I'm new to ksh scripting and I like to output my commands so as to evaluate how the data is being processed along the way. Once the script is done, I will go back and remove those echo(validation) lines.

# EDIT
As you can see, that last echo statement can not evaluate correctly ($DIR does not exist ANYWHERE in the script, its just what I want prefixed to $COUNTER to create the variable name, which takes the form $DIR#, in the export statement), but I don't want to call any other variable than the one that was just created.

Last edited by bracken84; 02-18-2012 at 04:08 PM. Reason: added further details
 
Old 02-18-2012, 07:36 PM   #4
Nominal Animal
Senior Member
 
Registered: Dec 2010
Location: Finland
Distribution: Xubuntu, CentOS, LFS
Posts: 1,723
Blog Entries: 3

Rep: Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948Reputation: 948
Quote:
Originally Posted by bracken84 View Post
Code:
export DIR"$COUNTER"=$CHILDDIR
verify that the environment variable I created works.
Code:
ksh -c "echo \"\$DIR$COUNTER\""
The current shell will first expand the above to ksh -c 'echo "$DIRcounter"' where counter is the value of $COUNTER in the current shell. (It does not use single quotes, but it does keep the third parameter as a single parameter; I added the single quotes to highlight that fact.)

The command will run another instance of the ksh shell. Only the environment variables (and not ksh variables) will be available to that instance. It will therefore echo the value of the DIRcounter environment variable (again, counter being whatever $COUNTER evaluated to in the parent shell).
 
1 members found this post helpful.
Old 02-18-2012, 11:30 PM   #5
bracken84
LQ Newbie
 
Registered: Feb 2012
Location: Colorado
Distribution: Too many.
Posts: 5

Original Poster
Rep: Reputation: Disabled
Awesome, that solves the problem. Thank you for the insight.
 
Old 02-19-2012, 05:03 AM   #6
David the H.
Bash Guru
 
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Arch + Xfce
Posts: 6,852

Rep: Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037
This link is bash-based, but it includes some discussion of ksh.

http://mywiki.wooledge.org/BashFAQ/006

While perhaps not applicable in this specific case, most of the time you can, and should, avoid dynamic variable names, and use other techniques like arrays or functions instead.
 
1 members found this post helpful.
Old 02-19-2012, 11:43 AM   #7
bracken84
LQ Newbie
 
Registered: Feb 2012
Location: Colorado
Distribution: Too many.
Posts: 5

Original Poster
Rep: Reputation: Disabled
David,

First of all, thank you. I did some reading (including your link) and now my paths to sub-directories are stored in an array. I am successfully exporting the array values on each iteration of the loop and I am able to continue using Nominal Animal's ksh -c command to start a new shell and verify that the variables are available to child processes of the script.

I'm still fuzzy on why the $ and {} are not used in the export statement, however.
 
Old 02-20-2012, 03:20 AM   #8
David the H.
Bash Guru
 
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Arch + Xfce
Posts: 6,852

Rep: Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037
Good to hear it. Arrays are one of the most useful, and most underused, tools in scripting. Of course not all shells support them, but the more powerful ones like bash and ksh do.

$ and ${} are only used when expanding a parameter; replacing the name with its content on the line. But the export command needs to know the name of the parameter to export, not the value it contains (although you can also give it a value at the same time).


As a side note, another situation where the $ is unneeded is when you use a variable in an arithmetic context.

Code:
$ x=4 y=3
$ echo "$(( x + y ))"
7
Since the only legal values in an arithmetic field are integers and operators, any other text string is assumed to be a variable containing a number, and is automatically expanded.

You can use the full form as well, of course. In fact, you still need to use the full form if you do any parameter substitutions on the values, or in other operations where the syntax would otherwise be ambiguous, such as concatenating variables.

Code:
$ x=4 y=3
$ echo "$(( xy + xy ))"
0
$ echo "$(( $x$y + $x$y ))"
86
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Bash script dynamic file naming teh_raab Programming 7 01-05-2009 08:37 AM
function showing a list of variable and value: (dynamic variable name) budhax Linux - Newbie 1 09-19-2008 07:05 PM
Bash Shell Scripting Dynamic Variable naming question ZuG Programming 2 02-07-2007 02:39 PM
variable naming conventions patpawlowski Programming 6 02-25-2004 01:49 PM
some ksh scripting nabil Programming 1 03-03-2002 10:34 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > Programming

All times are GMT -5. The time now is 10:06 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration