Unix script array


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unix script array
# 1  
Old 12-20-2005
Unix script array

Unix shell script;

How do I create an array and dynamically populate it with values? How do I retrieve from the array?
# 2  
Old 12-20-2005
you didn't mention what shell you're using.
If it's 'ksh', do 'man ksh' and search for 'array'.
# 3  
Old 12-20-2005
ksh

I am doing in ksh
# 4  
Old 12-20-2005
Quote:
Originally Posted by leemjesse
I am doing in ksh
well then...... try looking into 'man ksh' as noted previously.
# 5  
Old 12-20-2005
Bug Set an array

set -A <array_name> item1 item2 item3 item4 ....

or you can read from a file....
filename = /.../.../.../... #input file
set -A <array_name> [ < $filename]
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Array V-Lookup using UNIX bash

Hey everyone, I am trying to extract column values from a column in a tab-delimited text file and overlay them in a 2nd tab-delimited text file using a V-lookup type script in Unix bash. These are the 1st few rows of the 1st input file IN1: rsid chromosome position allele1 ... (10 Replies)
Discussion started by: Geneanalyst
10 Replies

2. Shell Programming and Scripting

storing large data in unix array variable

Hi, I have table in sql ..from this table im storing the first coloumn values in shell array variable ... after this passing this variable as an arugument in SQL procedure. But the proc. is running fine only for 1024 values in array ... How to store more than 1024 values in the array... (5 Replies)
Discussion started by: ankitknit
5 Replies

3. Shell Programming and Scripting

Using unix array in sql

Hi all, I have declared an array in unix as below. #!/bin/ksh arr=() for i in {0..4} do arr=$i; done. i want to insert these array variables into the oracle table.can you guys please help me in doing this. my code is as below. value=`sqlplus -s fos/fos << EOF begin for j in... (10 Replies)
Discussion started by: Mukta
10 Replies

4. UNIX and Linux Applications

Perl Script to read an excel file into an array and search in the UNIX directories

Hi, I want the Perl script with versions 5.8.2 and 5.8.5 starting with #!/usr/bin/perl The Perl program should read the excel file or text file line by line and taking into an array and search in the UNIX directories for reference file of .jsp or .js or .xsl with path .The Object names... (2 Replies)
Discussion started by: pasam
2 Replies

5. Shell Programming and Scripting

Please help on array in unix

how can i assign each line to a variable ? i tried below but its not working. code: arr=cat tes.txt|cut -d "=" -f2 then i tried to see output of the first line by below command but its giving first line. echo $arr Please help me. How i can assing each line to a array? Thank,... (1 Reply)
Discussion started by: prince1987
1 Replies

6. Shell Programming and Scripting

Array in unix

Dear masters, Need your help for my below query. Actually my script is as shown: #!/usr/bin/ksh pp='"aa bb" cc dd' set -A mon -- $pp echo ${mon} echo ${mon} echo ${mon} But when I execute this script , I get the output as : "aa bb" cc I want the output as below and it should... (6 Replies)
Discussion started by: patric2326
6 Replies

7. Shell Programming and Scripting

How to display two dimensional array in UNIX

Hi all, Please help me out how to read and display two dimensional array elements in unix. EX: 1 2 3 4 (1 Reply)
Discussion started by: eswarcs
1 Replies

8. Shell Programming and Scripting

2 dimensional array in unix

I am trying to implementing two dimensinal array in ksh script.Would you pls help me out. I have a large size of file, File contains looks like ID SID VLAUE1 VALUE2 TOTALVALUE 1 a1 01 02 03 1 b1 02 05 07 ... (2 Replies)
Discussion started by: pritish.sas
2 Replies

9. Shell Programming and Scripting

unix array

Hi , suppose , i have a array variable with size 40 and i have assign a 10 character values. I want to print the array like ,the 10 caharacter value with rest 30 character as blank, if i assigned any blank values also .it will print 40 blank space. Please help me regaring this.It is very... (5 Replies)
Discussion started by: julirani
5 Replies

10. Shell Programming and Scripting

Reading Of Array Element in Unix

Hi, I am using the following command to initialize and array # arr=ffffff00 # echo $arr ffffff00 my requirement is i want to fetch the one by one character from array. I don't know how to fetch one by one charcter from array. Please i need an help. Thank you very much Ravi R N (2 Replies)
Discussion started by: ravi_rn
2 Replies
Login or Register to Ask a Question