jeremy0x / perl_tests

My perl scripts while learning perl from Derek Banas youtube channel in preparation for a CS test.

Home Page:https://www.newthinktank.com/2016/03/perl-tutorial/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Perl 🐪

My perl scripts while learning perl from Derek Banas youtube channel.

Code and Transcripts from the video are available in the Perl Tutorial.

Running Perl Scripts

Run the perl script using the following commands in the terminal:

perl <script_name>.pl

Run perl script with arguments

perl <script_name>.pl <arg1> <arg2> ...

Run perl script with arguments from file

perl <script_name>.pl $(< <file_name>)

Run perl script with arguments from file and output to file

perl <script_name>.pl $(< <file_name>) > <output_file_name>

Run perl script with arguments from file and input from file

perl <script_name>.pl $(< <file_name>) < <input_file_name>

About

My perl scripts while learning perl from Derek Banas youtube channel in preparation for a CS test.

https://www.newthinktank.com/2016/03/perl-tutorial/


Languages

Language:Perl 100.0%