Advertisement

07.12.2004 at 07:18PM PDT, ID: 21056413
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Perl command line Args and file input

Tags: perl, command, args, line, input
I have a perl file that I run as
./myscript.pl somefile.txt

which parses out some values from a text file that looks like

[1] # join request # [4] other stuff
[3] # join successful # [2] other stuff


etc. where the first number in the brackets stands for a computer number. The result of the program is to count how many times that particular line (like "join request") a particular computer # has.

I want to be able to call my program ( a perl program) like

./myscript.sh somefile.txt some text to get

where "some text to get" is taken in from the argument and then i can get any value from that file from the command line. Currently, I am hardcoding whihc line / value I parse out in the following file:

Any idea how to do the input from command line / parse from args?

Thanks!

-Edward


#!/usr/bin/perl -s

my %messageCount=();
my %internalCount=();

main();

sub main(){

while (<>) {
    @line = split(/\#/);

   if((/join request/)){
#print $line[0];

$node = $line[0];
$node =~ /\[(\d*)\]/;
print $1;

$messageCount{$1} = $messageCount{$1} + 1;

}
 
}



while ( my ($key, $value) = each (%messageCount)){
chomp ($key);
print "$key $value\n";
}


}
Start your free trial to view this solution
Question Stats
Zone: Programming
Question Asked By: edwardt
Solution Provided By: lwadwell
Participating Experts: 5
Solution Grade: A
Views: 30
Translate:
Loading Advertisement...
07.12.2004 at 07:19PM PDT, ID: 11535498

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.12.2004 at 08:08PM PDT, ID: 11535687

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.12.2004 at 08:28PM PDT, ID: 11535765

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.13.2004 at 07:15AM PDT, ID: 11539130

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.13.2004 at 07:26AM PDT, ID: 11539247

Rank: Wizard

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.14.2004 at 02:34AM PDT, ID: 11546998

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.14.2004 at 04:18AM PDT, ID: 11547643

Rank: Guru

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.14.2004 at 06:23PM PDT, ID: 11555215

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
07.14.2004 at 06:41PM PDT, ID: 11555269

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
Microsoft
  • Internet Protocols
  • Applications
  • Development
  • OS
  • Hardware
  • Windows Security
Apple
  • Operating Systems
  • Hardware
  • Programming
  • Networking
  • Software
Internet
  • Search Engines
  • File Sharing
  • WebTrends / Stats
  • Spy / Ad Blockers
  • Web Browsers
  • New Net Users
  • Web Development
  • Chat / IM
  • Anti Spam
  • Web Servers
  • Anti-Virus
  • Email Clients
Gamers
  • Tips
  • Online / MMORPG
  • Puzzle
  • Emulators
  • Action / Adventure
  • Role Playing
  • Consoles
  • Game Programming
  • Strategy
  • Sports
  • Misc
  • Computer Games
Digital Living
  • Hardware
  • Automotive
  • New Net Users
  • New Users
  • Software
  • Digital Music
  • Gaming World
  • Home Security
  • Apple
  • Networking Hardware
Virus & Spyware
  • Vulnerabilities
  • IDS
  • Encryption
  • Anti-Virus
  • Operating Systems Security
  • Software Firewalls
  • WebApplications
  • Cell Phones
  • Operating Systems
  • Internet
  • Hardware Firewalls
Hardware
  • Displays / Monitors
  • Handhelds / PDAs
  • Components
  • Peripherals
  • Laptops/Notebooks
  • Servers
  • Misc
  • Apple
  • Embedded Hardware
  • Networking Hardware
  • Storage
  • Desktops
  • New Users
Software
  • System Utilities
  • Industry Specific
  • Network Management
  • Photos / Graphics
  • Page Layout
  • VMware
  • Misc
  • Web Development
  • OS
  • CYGWIN
  • Voice Recognition
  • Virtualization
  • Message Queue
  • Quality Assurance
  • Security
  • Firewalls
  • MultiMedia Applications
  • Development
  • Database
  • Office / Productivity
  • Business Management
  • OS/2 Apps
  • Server Software
  • Internet / Email
ITPro
  • OS
  • Storage
  • Encryption
  • Operating Systems Security
  • Apple Hardware
  • Laptops & Notebooks
  • Servers
  • Networking Hardware
  • Peripherals
  • Devices
  • Displays / Monitors
  • WebTrends / Stats
  • Search Engines
  • Firewalls
  • Web Computing
  • WebApplications
  • IDS
  • Vulnerabilities
  • Email Clients
  • File Sharing
  • Spy / Ad Blockers
  • Web Browsers
  • Web Servers
  • Networking
  • Anti-Virus
  • Consulting
  • Chat / IM
  • Anti Spam
Developer
  • Web Servers
  • Web Browsers
  • Game Programming
  • Dev Tools
  • Industry Specific
  • Office / Productivity
  • Database
  • CYGWIN
  • Web Development
  • Search Engines
  • File Sharing
  • WebTrends / Stats
  • Programming
  • Content Management
  • Application Servers
  • Protocols
Storage
  • Removable Backup Media
  • Storage Technology
  • Servers
  • Grid
  • Remote Access
  • Backup / Restore
  • Misc
  • Hard Drives
OS
  • Miscellaneous
  • Security
  • Development
  • Linux
  • VMware
  • MainFrame OS
  • Unix
  • Apple
  • OS / 2
  • AS / 400
  • BeOS
  • Microsoft
  • VMS / OpenVMS
Database
  • Oracle
  • Miscellaneous
  • MySQL
  • Software
  • Sybase
  • Contact Management
  • PostgreSQL
  • Data Manipulation
  • Clarion
  • InterSystems Cache
  • Siebel
  • MUMPS
  • OLAP
  • SQLBase
  • SAS
  • GIS & GPS
  • 4GL
  • Berkeley DB
  • DB2
  • Informix
  • Interbase / Firebird
  • FoxPro
  • Reporting
  • LDAP
  • Filemaker Pro
  • MS SQL Server
  • dBase
  • MS Access
Security
  • Misc
  • Web Browsers
  • Software Firewalls
  • Operating Systems Security
  • File Sharing
  • Spy / Ad Blockers
  • Vulnerabilities
  • WebApplications
  • IDS
  • Anti-Virus
  • Encryption
  • Anti Spam
  • Email Clients
  • VPN
  • Chat / IM
Programming
  • Editors IDEs
  • Installation
  • Handhelds / PDAs
  • Multimedia Programming
  • System / Kernel
  • Automation
  • Algorithms
  • Game
  • Signal Processing
  • Project Management
  • Open Source
  • Database
  • Misc
  • Languages
  • Processor Platforms
  • Theory
Web Development
  • Scripting
  • Blogs
  • Web Servers
  • Software
  • Search Engines
  • Web Graphics
  • Web Services
  • Images
  • Internet Marketing
  • Images and Photos
  • Components
  • Document Imaging
  • Web Languages/Standards
  • Illustration
  • WebApplications
  • Fonts
  • WebTrends / Stats
  • Authoring
  • Digital Camera Software
  • Miscellaneous
Networking
  • Protocols
  • Apple Networking
  • Network Management
  • Message Queue
  • Application Servers
  • Content Management
  • File Servers
  • Email Servers
  • Misc
  • Java Editors & IDEs
  • Wireless
  • Networking Hardware
  • Backup / Restore
  • System Utilities
  • ISPs & Hosting
  • Web Servers
  • Storage Technology
  • Removable Backup Media
  • Servers
  • Web Computing
  • Broadband
  • Grid
  • OS / 2
  • Novell Netware
  • Unix Networking
  • Windows Networking
  • Security
  • Telecommunications
  • Operating Systems
  • Linux Networking
Other
  • Lounge
  • Business Travel
  • Community Support
  • New Net Users
  • Philosophy / Religion
  • Math / Science
  • Miscellaneous
  • URLs
  • Expert Lounge
  • Politics
  • Puzzles / Riddles
  • Automotive
Community Support
  • Suggestions
  • New to EE
  • New Topics
  • CleanUp
  • Announcements
  • General
  • Feedback
  • Input
  • EE Bugs
 
07.12.2004 at 07:19PM PDT, ID: 11535498
Oh - and I have a problem where it doesn't print out sequentially for some reason - if you can help in fixing that (sequentially by computer #) that would be helpful

Thanks!

-Edward
 
07.12.2004 at 08:08PM PDT, ID: 11535687
There are a couple of options for the command line options:

1. use perl's standard array that contains the the arguements...'@ARGV'.  Where $ARGV[0] is the first option, $ARGV[1] is the second...etc.
2. Or (my preferred) use the perl module 'Getopt'...or even better, 'Getopt::Long' to use more standard unix style options.

So your script could become something like...

#!/usr/bin/perl -s
use strict;

my $filename  = $ARGV[0];
my $searchstr = $ARGV[1];

print "Searching file $filename for string $searchstr \n";

parse_file();  # I avoid using main as a subroutine name...

sub parse_file() {
    my %messageCount = ();

    open(INFILE, "$filename") or die "Cannot open file $filename $!";

    while (my $line = <INFILE>) {
        $messageCount{$1}++ if ($line =~ /\[(\d*)\]\s*\#\s*$searchstr\s*\#/);  # may as well use a single regexp for this.
    }
    close(INFILE);

    foreach my $key (sort keys %messageCount)) {
        print "$key $messageCount{$key}\n";
    }
}
## END Program

and call it like

./myscript.pl [file to search] [string to match]
Accepted Solution
 
07.12.2004 at 08:28PM PDT, ID: 11535765
Woops, sorry too many brackets...line
    foreach my $key (sort keys %messageCount)) {
should be
    foreach my $key (sort keys %messageCount) {


let me explain the script a little better...

1. I am just using the @ARGV array to get the command line options...assuming the the first one is the file and the second is the string.

2. I am explicitly opening the file for reading...'open(INFILE, "$filename")'

3. '$messageCount{$1}++' is the same as '$messageCount{$1} = $messageCount{$1} + 1'.  The '++' operator is used to add 1 to a variable.

4. The regexp (or regular expression) $line =~ /\[(\d*)\]\s*\#\s*$searchstr\s*\#/ is matching on...
        a square opening bracket, ie the '\[', followed by
        any number of digits, ie the \d*...and returning them in $1 by surrounding this in the round brackets...ie (\d*), followed by
        any amount of white space, ie the \s*, foillowed by
        a hash symbol, ie the \#, followed by
        any amount of white space, ie the \s*, foillowed by
        the desired search string, as contained in the variable $searchstr, followed by
        any amount of white space, ie the \s*, foillowed by
        a hash symbol, ie the \#

5. I close the open file...'close(INFILE)'

6. Then sort the values used as keys in the hash...'sort keys %messageCount'

 
07.13.2004 at 07:15AM PDT, ID: 11539130
Just a little thing, but for ARGV[1] to get the entire search string, he would need to surround it with double quotes, correct? Otherwise, the whitespace delimited words would be in ARGV[2..n], I believe.

Justin
 
07.13.2004 at 07:26AM PDT, ID: 11539247

Rank: Wizard

The sample file contents appears to have multiple "fields" per line which may or may not be for the same computer, so just to be sure, you may want to put the g (global) modifier on the end of the regex.
 
07.14.2004 at 02:34AM PDT, ID: 11546998
Assuming the first argument is the file spec and the rest is one search term:

die "usage: $0 filename search term\n" if $#ARGV < 1;

my (%messageCount, %internalCount);

      # create search term from command line
my $pattern = join('\s+', @ARGV[1..$#ARGV]);
      # escape any funny characters (like .)
$pattern =~ s/([^a-zA-Z0-9 ])/\\$1/g;
      # reduce list to 1 file spec
$#ARGV = 0;

while (<>) {
   $messageCount{$1}++, print $1 if /^[^#]*\[(\d+)\][^#]*$pattern/;
}
foreach (sort keys %messageCount) {
   print "$_ $messageCount{$_}\n";
}
 
07.14.2004 at 04:18AM PDT, ID: 11547643

Rank: Guru

open(F,"<$ARGV[0]") and @f=<F>;
foreach $l (@f){$l=~m/^(\[\d+\])\s*#\s*($ARGV[1]).*/;$n=$1;$c{"$n"}++;}
while (($k,$v)=each %c){print "$k=$v"};'
# to be improved in many ways
 
07.14.2004 at 06:23PM PDT, ID: 11555215
Hi,

I have a minor problem with the


foreach my $key (sort keys %messageCount){
chomp ($key);
print "$key $messageCount{$key}\n";
}

It prints out my numbers like
10 1
11 1
12 2
13 1
14 5
15 8
16 15
17 10
18 13
19 1
2 1
20 3
3 1
4 1
5 1
6 6
7 1
8 1
9 1

I guess I could go into excel and do a sort - but if it can sort the keys based on numbers instead of string, that woudl be helpful.
Thanks.

-Edward
 
07.14.2004 at 06:41PM PDT, ID: 11555269
for a numberic sort, try...

    foreach my $key (sort {$a <=> $b} keys %messageCount) {
 
 
20080236-EE-VQP-29