7 lines
99 B
Perl
7 lines
99 B
Perl
#!/usr/bin/perl -w
|
|
use Win32;
|
|
|
|
$cwd = Win32::GetCwd();
|
|
|
|
print "Current directory=$cwd\n";
|