#!/usr/local/bin/perl
use warnings;
use strict;
my $inputfile = "file1.txt"; # assign the contents of netlist to a scalar
open FH,$inputfile; # dump the contents of scalar to a file handler
my @results = <FH>; # use an array called results, a vector to store the items...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.