Okay pardon me for this silly question (I am learning perl!) but how do we run a perl file that has many sub functions. For example, if a file called thisismyfile.pl has following sub functions
sub thisismyfunction1
sub thisismyfunction2
where sub thisismyfunction1 will output table 1 and sub thisismyfunction2 will output table 2.
then when I want to run this .pl file from command line, I write in terminal
perl thisismyfile.pl thisismyfunction1
but this doesn't seem to give me the result (as in table1) I want? Is this the way to run a perl file with various sub functions ?