我在以下路径(/home/Leen/Desktop/Tools/bin/tool.pl)中有一个 perl 脚本,每次我想运行这个工具时,我都会去终端
>
然后将目录更改为
..../bin>
然后我通过编写运行 perl
..../bin> perl tool.pl file= whatever config= whatever
问题是我想运行这个 perl 脚本而不需要去它所在的 bin 文件夹。所以我可以从任何目录运行 perl 脚本,一旦我进入 shell,我就进入 etc/environment 并编写了以下内容
导出 PERL5LIB=$PERL5LIB:/home/Leen/Desktop/Tools/bin
但是当我去终端并直接编写以下内容时,无需进入 tool.pl 所在的 bin 文件夹
>perl tool.pl file=... config=...
它说文件“tool.pl”不存在???