Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: hiccoughing here documents

by kcott (Archbishop)
on Aug 12, 2017 at 03:26 UTC ( [id://1197293]=note: print w/replies, xml ) Need Help??


in reply to hiccoughing here documents

You can use backticks to quote the terminating string; you can also stack multiple heredocs. Here's an example to get the output you show:

#!/usr/bin/env perl use strict; use warnings; my $rule_base = 'ip rule add fwmark 0x0201/0xffff table'; my $route_base = 'ip route add default via 172.27.201.1 dev eth1.201 t +able'; my @table_nums = (200, 201); my $routing_commands = <<`RULE` . <<`ROUTE`; for i in @table_nums; do echo "$rule_base \$i"; done RULE for i in @table_nums; do echo "$route_base \$i"; done ROUTE print $routing_commands;

Output:

ip rule add fwmark 0x0201/0xffff table 200 ip rule add fwmark 0x0201/0xffff table 201 ip route add default via 172.27.201.1 dev eth1.201 table 200 ip route add default via 172.27.201.1 dev eth1.201 table 201

See "perlop: here-document syntax" for details.

— Ken

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1197293]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-23 20:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found