Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    use Win32;
    my $dir = Win32::GetCwd;
    print "$dir";
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    use Cwd;
    my $dir = cwd;
    print "$dir";