j'ai remarqué que j'avais installé Perl par défaut ( sous Linux ubuntu) sur ma machine, en effet, il était rangé dans usr/bin ...

j'ai fait un petit "hello World" en perl:

#! /usr/bin/perl
Print "Hello World";



un petit chmod 777 nom_ du_script pour rendre le script executable (ici,hello.pl)

ensuite taper dans la console: . /hello.pl

voila, comment on débute en perl....