summaryrefslogtreecommitdiff
path: root/symbian/cwd.pl
diff options
context:
space:
mode:
Diffstat (limited to 'symbian/cwd.pl')
-rw-r--r--symbian/cwd.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/symbian/cwd.pl b/symbian/cwd.pl
new file mode 100644
index 0000000000..d3272d2de5
--- /dev/null
+++ b/symbian/cwd.pl
@@ -0,0 +1,6 @@
+use strict;
+use Cwd;
+my $CWD = getcwd();
+$CWD =~ s!^C:!!i;
+$CWD =~ s!/!\\!g;
+$CWD;