in reply to Re^3: NON Common Elements between two columns
in thread NON Common Elements between two columns

Thank you very much! Sorry for my deep ignorance, but what I need to write in the my @input = ({},{}) inside the graph ? Where is addressed the input file, for istance 'mytext.txt' that contains the two columns?
  • Comment on Re^4: NON Common Elements between two columns

Replies are listed 'Best First'.
Re^5: NON Common Elements between two columns
by aitap (Curate) on Jul 17, 2012 at 11:12 UTC

    my @input = ({},{}) just creates an array containing two empty hash references which are going to be filled later.

    The input data can be passed directory to STDIN of the script or stated as a command line argument (<> is a special case, input from <> comes either from standard input, or from each file listed on the command line. See I/O Operators).

    Sorry if my advice was wrong.