El Cliente

Veamos el programa cliente:

lhp@nereida:~/Lperl/src/systemcommand$ cat -n script/usesystemcommand.pl
 1  #!/usr/bin/perl -I../lib -w
 2  use strict;
 3  use System::Commands qw{ls};
 4
 5  my $f = shift || 'pe*.pl';
 6
 7  print "\n******Contexto de lista*********\n";
 8  my @files = ls("-l", "-t", "-r", $f);
 9  print @files;
10
11  print "\n******Contexto escalar*********\n";
12  my $files = ls("-l", "-t", "-r", $f);
13  print $files;
14
15  print "\n******No existe*********\n";
16  my @r = chuchu("a");

Casiano Rodríguez León
Licencia de Creative Commons
Principios de Programación Imperativa, Funcional y Orientada a Objetos Una Introducción en Perl/Una Introducción a Perl
por Casiano Rodríguez León is licensed under a Creative Commons Reconocimiento 3.0 Unported License.

Permissions beyond the scope of this license may be available at http://campusvirtual.ull.es/ocw/course/view.php?id=43.
2012-06-19