perl中的heredoc

发布时间:2020-11-23编辑:脚本学堂
perl中的heredoc在成块打印文本时很有用。格式 print <

perl中的heredoc在成块打印文本时很有用。

格式
print <<EOF
you text go here
EOF

例子:
 

复制代码 代码如下:
#!/usr/bin/perl

sub usage{
    print <<EOF;
Usage: test.pl -c config, -f file -l lines
    -c config file
    -f file name
    -l number of lines
EOF
}

注解:
the last EOF must start at the beginning of the line!
you can use other words instead of EOF。