![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
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 |
| Reading specific contents from 1 input files and appending it to another input file | sksahu | Shell Programming and Scripting | 5 | 01-14-2009 06:09 AM |
| Replace text in input file | daphantomica | Shell Programming and Scripting | 2 | 04-25-2008 03:39 AM |
| input text into file | cannonfodder | Shell Programming and Scripting | 1 | 12-15-2007 10:37 AM |
| sh shell user input and stote it to a array | user_prady | Shell Programming and Scripting | 7 | 11-16-2007 03:51 AM |
| How to input username on text file into finger command on shell script | Micz | Shell Programming and Scripting | 3 | 11-08-2005 02:38 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
input text from file into 2d array
Hi all
I have a little brainscratcher here. I want to draw a pie chart from data in a text file. The drawing of the graph works fine, if I insert the data manually into a 2d array. Now I want to pull the data from a text file (which was created using a uniq -c command) see sample below. Code:
1 012lg.pwv.gov.za
1 0zero1.co.za
1 123websites.co.za
1 3gi.co.za
1 3rivers.net
12 3smedia.co.za
1 4data.co.za
3 4seasons4u.co.za
1 aability.co.za
2 aapg.org
1 aapt.net.au
Code:
my @data = (['Project', 'HW1', 'HW2', 'HW3', 'MidTerm', 'Final'],
[25, 6, 7, 2, 25, 35]);
Thank you in advance |
|
||||
|
hi Thank you for your reply. It put me on the right track, and now I have the text file in a matrix(2d array). Regards
|
| Sponsored Links | ||
|
|