]> gitweb @ CieloNegro.org - sugar.git/blob - tools/utils.pl
Auto commit by The Sugar System.
[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;