]> gitweb @ CieloNegro.org - sugar.git/blob - tools/utils.pl
Merge branch 'master' of ssh://nem.cielonegro.org/home/www/git.cielonegro.org/htdocs...
[sugar.git] / tools / utils.pl
1 use strict;
2 use warnings;
3
4 sub rel2saved {
5     my $rel = shift;
6
7     $rel =~ tr/./_/;
8     return "./dot-files/$rel";
9 }
10
11 1;