我在/u/meee/ws
我正在执行/u/bin/execd
和
use Cwd qw ( abs_path );
print abs_path($0); #gives the location of the script, /u/bin/execd
我能做些什么才能获得/u/meee/ws
?
答案 0 :(得分:1)
use Cwd;
my $dir = getcwd;
use Cwd 'abs_path';
my $abs_path = abs_path($file);
第一个会是吗?