Arrays in HP Vs Linux


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Arrays in HP Vs Linux
# 1  
Old 04-17-2007
Arrays in HP Vs Linux

Hi,
I transfered a shell script from HP to Linux and have some errors running it:

Code:
>cat /tmp/tst4.dat
a
b
c
d
e
f

>cat test_script
#!/bin/sh 

MONTH_LIST=/tmp/tst4.dat

set -A MONTH_ARREY `cat $MONTH_LIST`

for MONTH in ${MONTH_ARREY[*]}
do
echo $MONTH
done

>./test_script
./test_script: line 5: set: -A: invalid option
set: usage: set [--abefhkmnptuvxBCHP] [-o option] [arg ...]

thanks
# 2  
Old 04-17-2007
HP is using ksh syntax while Linux uses bash syntax with sh. The bash syntax goes like this:
bash-3.00$ array=(a b c d e f g)
bash-3.00$ for i in ${array[*]} ; do echo i = $i ; done
i = a
i = b
i = c
i = d
i = e
i = f
i = g
bash-3.00$

But ksh is available for Linux and that is another approach. Your distro probably has an optional package with ksh.
# 3  
Old 04-17-2007
thanks, it is working Smilie
# 4  
Old 04-19-2007
Quote:
Originally Posted by ynixon
Hi,
I transfered a shell script from HP to Linux and have some errors running it:

Code:
>cat /tmp/tst4.dat
a
b
c
d
e
f

>cat test_script
#!/bin/sh 

MONTH_LIST=/tmp/tst4.dat

set -A MONTH_ARREY `cat $MONTH_LIST`

for MONTH in ${MONTH_ARREY[*]}
do
echo $MONTH
done

>./test_script
./test_script: line 5: set: -A: invalid option
set: usage: set [--abefhkmnptuvxBCHP] [-o option] [arg ...]


There's no need for cat:
Code:
MONTH_ARREY=( `< $MONTH_LIST` )
printf "%s\n" "${MONTH_ARREY[@]}"

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Linux/Shell script - How to compare 2 arrays based on patterns and get the differences

I have FILE 1 (This file has all master columns/headers) A|B|C|D|E|F|G|H|STATUS FILE 2 A|C|F|I|OFF_STATUS 3|4|5|4|Y 6|7|8|5|Y Below command give me all headers of FILE 2 into array2.txt file paste <(head -1 FILE2.txt | tr '|' '\n')>array2.txt So I would like to compare... (2 Replies)
Discussion started by: jmadhams
2 Replies

2. UNIX for Dummies Questions & Answers

Arrays

Am using bash For eg: Suppose i have a array arr=(1 2 3 4 5 6 7 8 9 10 11 12) suppose i give input 5 to a script and script should able to print values greater than or equal to 5 like below: Input: 5 output: 5,6,7,8,9,10,11,12 (7 Replies)
Discussion started by: manid
7 Replies

3. Shell Programming and Scripting

Using arrays?

I have never used arrays before but I have a script like this: var1=$(for i in $(cat /tmp/jobs.021013);do $LIST -job $i -all | perl -ne 'print /.*(\bInfo.bptm\(pid=\d{3,5}).*/' | tr -d "(Info=regpid" | tr -d ')'; $LIST -job $i -all | cut -f7 -d','| sed -e "s/^\(*\)\(*\)\(*\)\(.*\)/\1... (2 Replies)
Discussion started by: newbie2010
2 Replies

4. Programming

Arrays in C++

I've noticed something interesting in C++ programming. I've always done tricky stuff with pointers and references to have functions deal with arrays. Doing exercises again out of a C++ book has shown me an easier way, I didn't even know was there. It's weird to me. When dealing with arrays, it... (4 Replies)
Discussion started by: John Tate
4 Replies

5. Shell Programming and Scripting

How can I use the arrays ?

Hi all, I have a file test1.txt with the below contents abc def ghj xyz I tried printing these values using arrays. Script tried : =========== set -A array1 `cat test1.txt` count=${#array1 } i=0 while do echo "element of array $array1" done (1 Reply)
Discussion started by: dnam9917
1 Replies

6. Programming

question about int arrays and file pointer arrays

if i declare both but don't input any variables what values will the int array and file pointer array have on default, and if i want to reset any of the elements of both arrays to default, should i just set it to 0 or NULL or what? (1 Reply)
Discussion started by: omega666
1 Replies

7. UNIX for Dummies Questions & Answers

arrays how to?

Hello, I am some what of a newbie to awk scripting and I seem to be struggling with this problem. I know I need to use arrays but I can't figure out how to use them. I have an input file that looks like this; Name,Team,First Test, Second Test, Third Test Crystal,Red,5,17,22... (1 Reply)
Discussion started by: vlopez
1 Replies

8. Web Development

PHP arrays in arrays

PHP question... I have an SQL query that's pulled back user IDs as a set of columns. Rather than IDs, I want to use their names. So I have an array of columns $col with values 1,7,3,12 etc and I've got an array $person with values "Fred", "Bert", "Tom" etc So what I want to do is display the... (3 Replies)
Discussion started by: JerryHone
3 Replies

9. Shell Programming and Scripting

Arrays

Dear all, How can i unset arrays. I mean all the subscripts including the array after using them. Could you direct me to some links of array memory handling in the korn shell. Thanks (2 Replies)
Discussion started by: earlysame55
2 Replies

10. Programming

integer arrays

ok, i tried something i did before and i seem to be getting somewhere here. just one problem. line 100.25: 1506-068 (W) Operation between types "int*" and "int" is not allowed. +93 printf("\nEnter 4 Digit Reference Number:\n"); +94 scanf("%d",&temp3); +95 ... (4 Replies)
Discussion started by: primal
4 Replies
Login or Register to Ask a Question