如何使用 Perl 脚本创建纯文本文件

发布于 11-27 15:44 字数 55 浏览 1 评论 0原文

如何使用 Perl 脚本创建纯文本文件。 Perl 应该生成(随机 16 位十六进制)输入数据。

How can use a Perl script to create the plain text file. Perl should generate (random 16 bit hex) input data.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

究竟谁懂我的在乎2024-12-04 15:44:35

如果您是 Perl 新手,请查看 http://learn.perl.org

查看 打开, 十六进制sprintf

If you are new to Perl take a look at http://learn.perl.org

Check out Open, hex, and sprintf.

红衣飘飘貌似仙2024-12-04 15:44:35

打开一个文件句柄,然后打印 到它。

open a file handle, then print to it.

呢古2024-12-04 15:44:35

除了其他建议之外,要生成随机值,请使用 Perl 的 rand 函数。

还可以在命令提示符下查询 Perl 文档。例如,要访问常见问题解答:

perldoc -q random

In addition to the other advice, to generate a random value, use Perl's rand function.

The Perl documentation can also be queried at your command prompt. For example, to access the FAQ:

perldoc -q random
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文