#!/usr/bin/perl use strict; use warnings; use Data::Dumper; use Getopt::Long; my @channels; GetOptions('channel=s' => \@channels); print Dumper(\@channels);