wc en version plus intelligente

master
Philippe Pittoli 2012-01-05 11:47:54 +01:00
parent 1c8a6574dd
commit d5c732de90
85 changed files with 12 additions and 17 deletions

View File

@ -1,17 +0,0 @@
#!/usr/bin/perl -w
# This script displays the number of lines in a file
use strict;
die "un argument svp ! " if !defined ($ARGV[0]);
my $i=0;
open(P,"< $ARGV[0]") || die "erreur ouverture $!";
while (<P>)
{
$i++;
}
close(P);
print "nb de lignes = $i \n";

12
perl/wc.pl Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/perl -w
# Utilisation : wc.pl fichier
open(F, "<$ARGV[0]") || die "Problème d'ouverture de fichier ! ";
$i = 0 ;
$i++ while(<F>);
close(F);
print "Nombre de lignes : $i \n";