Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re^2: Counting the Extensions of the Directory

by Mago (Parson)
on Dec 14, 2005 at 12:48 UTC ( [id://516605]=note: print w/replies, xml ) Need Help??


in reply to Re: Counting the Extensions of the Directory
in thread Counting the Extensions of the Directory

You are not counting the extensions ?

IBIZA desentol /tarifa1/users/desentol/mlima/dados/input > ls | grep - +oE "\.\w+$" | sort -u grep: illegal option -- o usage: grep [-E | -F] [-c|-l|-q] [-insvxbhwy] [-p parasep] -e pattern_ +list... [-f pattern_file...] [file...] usage: grep [-E | -F] [-c|-l|-q] [-insvxbhwy] [-p parasep] [-e pattern +_list...] -f pattern_file... [file...] usage: grep [-E | -F] [-c|-l|-q] [-insvxbhwy] [-p parasep] pattern [fi +le...]


Mago
mago@rio.pm.org


Replies are listed 'Best First'.
Re^3: Counting the Extensions of the Directory
by EdwardG (Vicar) on Dec 14, 2005 at 12:59 UTC

    GNU grep 2.5.1 has the -o option to output only the matched text. Your grep doesn't.

    As for counting...

    E:\tmp>ls | grep -oE "\.\w+$" | sort -u | wc -l 12

     

      Ok!

      You are counting to everything and not each extension !?

      IBIZA >ls SN10738.ksh calculo_SN10738.ksh separa_tabllama.awk SN10738.log calculo_SN10738B.ksh transferSN10738A.ksh filtroSN10738A.ksh separaVielinSN10406.ksh IBIZA >perl -e 'while(<*>){if(-f && /\.(\w+)$/){$e{$1}++}}print "$_ -> + $e{$_}\n" for keys %e' ksh -> 6 awk -> 1 log -> 1
      SHELL: IBIZA >ls | cut -sf2 -d. | sort | uniq -c 6 ksh 1 awk 1 log


      Mago
      mago@rio.pm.org


Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://516605]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-04-20 08:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found