![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| perl: storing regex in array variables trouble | xist | Shell Programming and Scripting | 3 | 08-29-2008 09:07 AM |
| storing variables in array.Please help | nua7 | Shell Programming and Scripting | 7 | 07-17-2008 10:47 AM |
| Storing pointer array in C | arunkumar_mca | UNIX for Dummies Questions & Answers | 1 | 08-23-2007 09:49 AM |
| Count No of Records in File without counting Header and Trailer Records | guiguy | Shell Programming and Scripting | 2 | 06-07-2007 01:15 PM |
| Getting database records in an array | rawat_me01 | Shell Programming and Scripting | 2 | 05-07-2007 01:09 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
storing records in awk array
hi i have a file as follows: Code:
1 2 3 4 5 6 i want to store all these numbers in an array using awk.. so far i have: Code:
awk '{for(i=1;i<=NR;i++) {a[i]=$1}} END {for(i=1;i<=NR;i++) {printf("%1.11f",a[i])}}' 1.csv > test
however, i am getting all values as zero in the "test" file.. appreciate any help. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|