The R Project SVN R

Rev

Rev 9350 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9350 Rev 13339
Line 1... Line 1...
1
use Cwd;
1
use Cwd;
2
 
2
 
3
chdir($ARGV[0]);
3
chdir($ARGV[0]);
4
my $currentdir = getcwd();
4
my $currentdir = cwd();
5
print "$currentdir";
5
print "$currentdir";
6
 
6