The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910 [% USE CSV -%][% CSV.dump([ 'VLAN ID' 'VLAN Name' ]) %][% FOREACH row IN results %] [% mylist = [] %] [% mylist.push(row.vlan) %] [% mylist.push(row.description) %] [% CSV.dump(mylist) %][% END %]
[% USE CSV -%]
[% CSV.dump([ 'VLAN ID' 'VLAN Name' ]) %]
[% FOREACH row IN results %]
[% mylist = [] %]
[% mylist.push(row.vlan) %]
[% mylist.push(row.description) %]
[% CSV.dump(mylist) %]
[% END %]