gpt4 book ai didi

linux - 如何将shell脚本case语句转换为perl脚本

转载 作者:太空宇宙 更新时间:2023-11-04 04:58:15 26 4
gpt4 key购买 nike

如何为shell脚本的以下情况stmt编写perl脚本

sciptname=$0
case ${sciptname} in
/*) scriptlocation=`dirname ${sciptname}`;;
*) scriptlocation=`dirname ${pwd}/${sciptname}`;;
esac

最佳答案

使用Cwd库函数abs_path

use Cwd 'abs_path';
my $script_location = abs_path( $0 );

关于linux - 如何将shell脚本case语句转换为perl脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40669218/

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