gpt4 book ai didi

perl - Perl 中 Unix Shell 的 '-x' 选项

转载 作者:行者123 更新时间:2023-12-05 00:32:17 26 4
gpt4 key购买 nike

运行 Unix shell 脚本时,您可以指定 -x在所有插值完成后,让 shell 打印正在执行的实际命令的选项。例如,如果我们运行这个脚本(script.sh):

#!/usr/bin/sh

var='hello, world'
echo $var

和:
sh -x script.sh

我们得到
+ var='hello, world'
+ echo hello, world
hello, world

如何为 perl 脚本获得相同的行为?

最佳答案

安装我的 Devel::DumpTrace 模块并运行

perl -d:DumpTrace my_script.pl

关于perl - Perl 中 Unix Shell 的 '-x' 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13730315/

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