19 lines
177 B
Plaintext
19 lines
177 B
Plaintext
|
#!/usr/bin/perl
|
||
|
while(<>)
|
||
|
{
|
||
|
if($_ =~ "Salut")
|
||
|
{
|
||
|
print "OK\n";
|
||
|
}
|
||
|
};
|
||
|
|
||
|
while(<>)
|
||
|
{
|
||
|
print if $_=~/"Bonjour"/;
|
||
|
};
|
||
|
# Encore plus simple !!
|
||
|
while(<>)
|
||
|
{
|
||
|
print if /"Bonjour"/;
|
||
|
};
|