SlideShare une entreprise Scribd logo
1  sur  26
Télécharger pour lire hors ligne
Fitxers I Directoris
Poesia del Perl
open my $me,'<',$0
    or die $!

while (<$me>) {
   chomp;
   say if length;
}

my $beyond = <$me>
    and print
        "there is $beyond me !";

close $me;
Variables Explícites
    open my $me,'<',$0
        or die $!

    while (my $line=<$me>) {
       chomp $line;
       say $line if length;
    }

    my $beyond = <$me>
        and print
            "there is $beyond me !";

    close $me;
FileHandler
●   <$filehandler>
Open
open my $filehandler,”MODE”,$filename
  or die $!;
Modes

<
>
>>
+<
Modes
< : open my $fhr,'<',”filename”
>
>>
+<
Modes
<
> : open my $fhw,'>',”filename”
>>
+<
More info
●   perldoc perlopentut
●   perldoc perlfaq5
closing


close $fh
   or die $!;
Reading
●   Readline: <>
Reading
●   Readline: <>



       while (my $line=<$fh>) {
           chomp $line;
           say "Read a line '$line'";
       }
Reading


my @contents = <$fh>;
print @contents
Writing
open my $fh_out , '>' , ”output.txt”
    or die $!;


for my $number ( 1 .. 9 ) {
    print $fh_out “$numbern”;
}


close $fh_out
    or die $!;
  special variables
●   $.
●   $/
●   $|
Directoris i Paths
opendir my $dir,”tasks/circus”;
while (my $task = readdir $dir){
    next if /^./;
    print “$taskn”;
}
­X
●   -f
●   -d
●   -r
●   -z
●   perldoc -f -r
rename
●   rename OLDNAME,NEWNAME
    rename $oldname,$newname
       or die “No puc renombrar $oldname a $newname”
copy and move
●   use File::Copy
unlink
unlink $filename
   or die “No puc esborrar $filename. $!”;
chdir
chdir $directori
   or die “No puc anar a $directori. $!”;
Executar codi

open my $fh, ”-|” , ”ls” or die $!;
while (<$fh>) {
    print;
}
close $fh
Executar codi

open my $spam,'|-'
        ,'mailx -s “assumpte” algu@domini.edu'
    or die $!;
for my $lletra ( a .. z ) {
    print $spam “$lletran”;
}
close $spam;
close $show;
close $show or die $!;

Contenu connexe

Tendances

The Magic Of Tie
The Magic Of TieThe Magic Of Tie
The Magic Of Tiebrian d foy
 
Node.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer NäheNode.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer NäheRalph Winzinger
 
Not Really PHP by the book
Not Really PHP by the bookNot Really PHP by the book
Not Really PHP by the bookRyan Kilfedder
 
Up.Php
Up.PhpUp.Php
Up.Phpwsoom
 
Pemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan SessionPemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan SessionNur Fadli Utomo
 
[PyConTW 2013] Write Sublime Text 2 Packages with Python
[PyConTW 2013] Write Sublime Text 2 Packages with Python[PyConTW 2013] Write Sublime Text 2 Packages with Python
[PyConTW 2013] Write Sublime Text 2 Packages with PythonJenny Liang
 
COMP2021 Final Project - LightHTML
COMP2021 Final Project - LightHTMLCOMP2021 Final Project - LightHTML
COMP2021 Final Project - LightHTMLConrad Lo
 
[Php] navigations
[Php] navigations[Php] navigations
[Php] navigationsThai Pham
 
Total World Domination with i18n (es)
Total World Domination with i18n (es)Total World Domination with i18n (es)
Total World Domination with i18n (es)Zé Fontainhas
 
Pemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLPemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLNur Fadli Utomo
 
Threading
ThreadingThreading
Threadingb290572
 
Coding Horrors
Coding HorrorsCoding Horrors
Coding HorrorsMark Baker
 

Tendances (20)

Password.php
Password.phpPassword.php
Password.php
 
The Magic Of Tie
The Magic Of TieThe Magic Of Tie
The Magic Of Tie
 
My shell
My shellMy shell
My shell
 
Dades i operadors
Dades i operadorsDades i operadors
Dades i operadors
 
Php
PhpPhp
Php
 
Node.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer NäheNode.js - Demnächst auf einem Server in Ihrer Nähe
Node.js - Demnächst auf einem Server in Ihrer Nähe
 
Not Really PHP by the book
Not Really PHP by the bookNot Really PHP by the book
Not Really PHP by the book
 
Up.Php
Up.PhpUp.Php
Up.Php
 
Pemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan SessionPemrograman Web 9 - Input Form DB dan Session
Pemrograman Web 9 - Input Form DB dan Session
 
Php modul-2
Php modul-2Php modul-2
Php modul-2
 
[Php] navigations
[Php] navigations[Php] navigations
[Php] navigations
 
[PyConTW 2013] Write Sublime Text 2 Packages with Python
[PyConTW 2013] Write Sublime Text 2 Packages with Python[PyConTW 2013] Write Sublime Text 2 Packages with Python
[PyConTW 2013] Write Sublime Text 2 Packages with Python
 
COMP2021 Final Project - LightHTML
COMP2021 Final Project - LightHTMLCOMP2021 Final Project - LightHTML
COMP2021 Final Project - LightHTML
 
[Php] navigations
[Php] navigations[Php] navigations
[Php] navigations
 
Total World Domination with i18n (es)
Total World Domination with i18n (es)Total World Domination with i18n (es)
Total World Domination with i18n (es)
 
Php talk
Php talkPhp talk
Php talk
 
Pemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQLPemrograman Web 8 - MySQL
Pemrograman Web 8 - MySQL
 
Threading
ThreadingThreading
Threading
 
Codigos
CodigosCodigos
Codigos
 
Coding Horrors
Coding HorrorsCoding Horrors
Coding Horrors
 

En vedette

Инструменты анализа первичной статистики социальных сетей
Инструменты анализа первичной статистики социальных сетейИнструменты анализа первичной статистики социальных сетей
Инструменты анализа первичной статистики социальных сетейГеоргий Мамарин
 
2011年度・国際経営論・トピック1
2011年度・国際経営論・トピック12011年度・国際経営論・トピック1
2011年度・国際経営論・トピック1Nozomi Soshizaki
 
20 заповедей пользователя Facebook
20 заповедей пользователя Facebook20 заповедей пользователя Facebook
20 заповедей пользователя FacebookГеоргий Мамарин
 
Социальные сети и блоги. Право на контент: Введение
Социальные сети и блоги. Право на контент: ВведениеСоциальные сети и блоги. Право на контент: Введение
Социальные сети и блоги. Право на контент: ВведениеГеоргий Мамарин
 
Социальные сети и блоги. Этика и академический троллинг
Социальные сети и блоги. Этика и академический троллингСоциальные сети и блоги. Этика и академический троллинг
Социальные сети и блоги. Этика и академический троллингГеоргий Мамарин
 
Социальные сети и блоги. Типология авторства, контент и искусство заголовка
Социальные сети и блоги. Типология авторства, контент и искусство заголовкаСоциальные сети и блоги. Типология авторства, контент и искусство заголовка
Социальные сети и блоги. Типология авторства, контент и искусство заголовкаГеоргий Мамарин
 
Социальные сети и блоги. Цифры и смыслы
Социальные сети и блоги. Цифры и смыслыСоциальные сети и блоги. Цифры и смыслы
Социальные сети и блоги. Цифры и смыслыГеоргий Мамарин
 

En vedette (14)

Test
TestTest
Test
 
Reflections 1
Reflections 1Reflections 1
Reflections 1
 
LANDLIFE
LANDLIFELANDLIFE
LANDLIFE
 
110524 xct european_funding_conservation
110524  xct european_funding_conservation110524  xct european_funding_conservation
110524 xct european_funding_conservation
 
Volkswagen Fox
Volkswagen FoxVolkswagen Fox
Volkswagen Fox
 
Инструменты анализа первичной статистики социальных сетей
Инструменты анализа первичной статистики социальных сетейИнструменты анализа первичной статистики социальных сетей
Инструменты анализа первичной статистики социальных сетей
 
дадлага
дадлагададлага
дадлага
 
2011年度・国際経営論・トピック1
2011年度・国際経営論・トピック12011年度・国際経営論・トピック1
2011年度・国際経営論・トピック1
 
Toyota 3
Toyota 3Toyota 3
Toyota 3
 
20 заповедей пользователя Facebook
20 заповедей пользователя Facebook20 заповедей пользователя Facebook
20 заповедей пользователя Facebook
 
Социальные сети и блоги. Право на контент: Введение
Социальные сети и блоги. Право на контент: ВведениеСоциальные сети и блоги. Право на контент: Введение
Социальные сети и блоги. Право на контент: Введение
 
Социальные сети и блоги. Этика и академический троллинг
Социальные сети и блоги. Этика и академический троллингСоциальные сети и блоги. Этика и академический троллинг
Социальные сети и блоги. Этика и академический троллинг
 
Социальные сети и блоги. Типология авторства, контент и искусство заголовка
Социальные сети и блоги. Типология авторства, контент и искусство заголовкаСоциальные сети и блоги. Типология авторства, контент и искусство заголовка
Социальные сети и блоги. Типология авторства, контент и искусство заголовка
 
Социальные сети и блоги. Цифры и смыслы
Социальные сети и блоги. Цифры и смыслыСоциальные сети и блоги. Цифры и смыслы
Социальные сети и блоги. Цифры и смыслы
 

Similaire à Perl Fitxers i Directoris (20)

What's New in Perl? v5.10 - v5.16
What's New in Perl?  v5.10 - v5.16What's New in Perl?  v5.10 - v5.16
What's New in Perl? v5.10 - v5.16
 
Perl Bag of Tricks - Baltimore Perl mongers
Perl Bag of Tricks  -  Baltimore Perl mongersPerl Bag of Tricks  -  Baltimore Perl mongers
Perl Bag of Tricks - Baltimore Perl mongers
 
IO Streams, Files and Directories
IO Streams, Files and DirectoriesIO Streams, Files and Directories
IO Streams, Files and Directories
 
Bash Scripting Workshop
Bash Scripting WorkshopBash Scripting Workshop
Bash Scripting Workshop
 
Perl Scripting
Perl ScriptingPerl Scripting
Perl Scripting
 
Subroutines
SubroutinesSubroutines
Subroutines
 
Bag of tricks
Bag of tricksBag of tricks
Bag of tricks
 
Learning Perl 6
Learning Perl 6 Learning Perl 6
Learning Perl 6
 
Good Evils In Perl (Yapc Asia)
Good Evils In Perl (Yapc Asia)Good Evils In Perl (Yapc Asia)
Good Evils In Perl (Yapc Asia)
 
perl-pocket
perl-pocketperl-pocket
perl-pocket
 
perl-pocket
perl-pocketperl-pocket
perl-pocket
 
perl-pocket
perl-pocketperl-pocket
perl-pocket
 
perl-pocket
perl-pocketperl-pocket
perl-pocket
 
Descobrindo a linguagem Perl
Descobrindo a linguagem PerlDescobrindo a linguagem Perl
Descobrindo a linguagem Perl
 
Perl Basics for Pentesters Part 1
Perl Basics for Pentesters Part 1Perl Basics for Pentesters Part 1
Perl Basics for Pentesters Part 1
 
Files
FilesFiles
Files
 
Files
FilesFiles
Files
 
php file uploading
php file uploadingphp file uploading
php file uploading
 
Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)Learning Perl 6 (NPW 2007)
Learning Perl 6 (NPW 2007)
 
Perl basics for Pentesters
Perl basics for PentestersPerl basics for Pentesters
Perl basics for Pentesters
 

Dernier

Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demoHarshalMandlekar2
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...panagenda
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesKari Kakkonen
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfNeo4j
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Farhan Tariq
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditSkynet Technologies
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 

Dernier (20)

Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Sample pptx for embedding into website for demo
Sample pptx for embedding into website for demoSample pptx for embedding into website for demo
Sample pptx for embedding into website for demo
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
Why device, WIFI, and ISP insights are crucial to supporting remote Microsoft...
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Testing tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examplesTesting tools and AI - ideas what to try with some tool examples
Testing tools and AI - ideas what to try with some tool examples
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Connecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdfConnecting the Dots for Information Discovery.pdf
Connecting the Dots for Information Discovery.pdf
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...Genislab builds better products and faster go-to-market with Lean project man...
Genislab builds better products and faster go-to-market with Lean project man...
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
Manual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance AuditManual 508 Accessibility Compliance Audit
Manual 508 Accessibility Compliance Audit
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 

Perl Fitxers i Directoris