projects
/
p5sagit/p5-mst-13.2.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
S_del_body is sufficiently small that inlining it is a space win.
[p5sagit/p5-mst-13.2.git]
/
symbian
/
cwd.pl
Commit
Line
Data
27da23d5
1
use strict;
2
use Cwd;
3
my $CWD = getcwd();
4
$CWD =~ s!^C:!!i;
5
$CWD =~ s!/!\\!g;
6
$CWD;