/perl_tests

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

Primary LanguagePerl

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>