gpt4 book ai didi

ruby - 如何将脚本文件的末尾读取为数据文件(Perl 或任何其他语言)

转载 作者:数据小太阳 更新时间:2023-10-29 07:13:55 24 4
gpt4 key购买 nike

我正在寻找执行以下操作的正确语法(在 Perl、Shell 或 Ruby 中):

# variable to access the data lines appended as a file

END_OF_SCRIPT_MARKER

raw data starts here
and it continues.

最佳答案

Perl 用 __DATA__ 做这个:

#!/usr/bin/perl

use strict;
use warnings;

while(<DATA>)
{
print;
}

__DATA__
Text to print
goes here

关于ruby - 如何将脚本文件的末尾读取为数据文件(Perl 或任何其他语言),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6623471/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com