Unix Shell basic loop massive n00b


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unix Shell basic loop massive n00b
# 15  
Old 09-01-2011
Put a space after the 3 here: if [ "${#cSID}" -ne 3]

To assign last element of line to end of array:
Code:
my_array[${#my_array[@]}]=$(sed -n "s/^$cSID.*://p" users.db)


Last edited by Chubler_XL; 09-01-2011 at 07:59 PM.. Reason: Missed users.db
# 16  
Old 09-01-2011
Quote:
Originally Posted by Chubler_XL
Put a space after the 3 here: if [ "${#cSID}" -ne 3]

To assign last element of line to end of array:
Code:
my_array[${#my_array[@]}]=$(sed -n 's/^$cSID.*://p users.db
')


Thank you!

although i got a bit confused with the array thing given that i got an array of 6 inputs
if this
Code:
my_array[${#my_array[@]}]=$(sed -n 's/^$cSID.*://p users.db
')

[/QUOTE]
is the last element
how do i select the other 5 ?

thx
# 17  
Old 09-01-2011
Oh sorry, I missunderstood your request - to load the line for cSID into an array you could use:

Code:
IFS=: my_array=( $(grep "^$cSID" users.db) )

Example:
Code:
$ cat users.db
423:name:surname:18:14:5
666:Ferris:Lucy:15:6:17
069:Chong:Annabel:15:20:16
987:Marple:Mike:13:19:12  
 
$ cSID=069
 
$ IFS=: my_array=( $(grep "^$cSID" users.db) )
 
$ echo Items=${#my_array[@]}  3rd=${my_array[2]}
Items=6 3rd=Annabel

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Basic FOR loop with break

Oracle Linux : 6.4/bash shell In the below I want to break out of the loop when it enters the 5th iteration. #!/bin/bash for i in 1 2 3 4 5 6 do echo "$i" if echo "Oh Nooo... i = $i. I need to stop the iteration and jump out of the loop" then break fi done But, it only... (3 Replies)
Discussion started by: John K
3 Replies

2. UNIX for Dummies Questions & Answers

Basic loop awk/shell script question..

Hi, Sorry if this is a newbie question. I guess you can use either awk or shell script for this sequence of operations, but knowing very little about either of them I'm not sure how I should try to write this. The basic objective is to copy certain files that are scattered all over my... (10 Replies)
Discussion started by: pc2001
10 Replies

3. Shell Programming and Scripting

Shell pipeline help for a n00b

I need to read input from a file, and make sure nothing prints after column 72. basically, ignore input after character 72 until the next newline character. Any help is appreciated. I have been searching forever! (10 Replies)
Discussion started by: Gbear
10 Replies

4. Shell Programming and Scripting

which is the Very basic certification on unix shell scripting?

Hi, I am very new to this forum, can any one tell me which is the very basic certification on unix shell scripting? please give me an advice on this. (1 Reply)
Discussion started by: Manjesh
1 Replies

5. Shell Programming and Scripting

Help required on basic Unix Bourne Shell Script

Howdy People :), I'm a newbie & its my first question here. I've started learning Unix Bourne Shell scripting recently and struggling already :p Can someone PLEASE help me with the following problem. Somehow my script is not working. Display an initial prompt of the form: Welcome to... (1 Reply)
Discussion started by: methopoth
1 Replies

6. Shell Programming and Scripting

Shell Scripting n00b

Hey Guys! I was hoping for some help with a simple script I'm trying to use. I have the script set up to pull some simple information out of a database .txt file and sed it into a preexisting template for assignment cover letters. The problem seems to be someplace in the sed statement but I... (5 Replies)
Discussion started by: BFeicht
5 Replies

7. Programming

Creating a basic UNIX shell script for chatting

Hey guys, This is quite simply what I'm trying to make: A program that runs in a UNIX terminal that you can output text messages to from another machine. These text messages would be prepended with a customized prompt. I'd also like to have the window spew out random dumps of flavor text not... (1 Reply)
Discussion started by: AcerAspirant
1 Replies

8. Shell Programming and Scripting

unix shell basic

need some help badly. if i had a file with content of few lines like the followings. 1183724770.651 0.049 137.157.56.169 200 415 GET http://venus/client/clients.xml "text/xml" 1183724770.651 0.049 141.183.101.250 200 415 GET http://venus/client/clients.xml "text/xml" using what command... (1 Reply)
Discussion started by: akagi07
1 Replies

9. UNIX for Dummies Questions & Answers

A basic question of FOR loop

Hi, have a basic query. Please see the below code: list="one two three" for var in $list ; do echo $var list="nolist" Done Wht if I want to print only first/ last line in the list Eg one & three Regards er_ashu (3 Replies)
Discussion started by: er_ashu
3 Replies

10. UNIX for Dummies Questions & Answers

Absolute n00b questions about Unix / Linux

Hi All, I have absolutely no experince with either one, and would LOVE to start from somewhere! So please guide me to some web sites (beside these great forums of course!) that I can obtain n00b information. (Books, links, resources, etc.) What software OS? should I begin with? I have heard... (2 Replies)
Discussion started by: CodeHunter
2 Replies
Login or Register to Ask a Question