mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
16 lines
188 B
Perl
16 lines
188 B
Perl
#!/perl/bin/perl
|
|
|
|
@ARGV[0];
|
|
$Dir = $ARGV[0];
|
|
sleep (3);
|
|
print ($Dir);
|
|
$temp = $Dir;
|
|
$slash = "-"."-";
|
|
print ("\n");
|
|
print ($slash);
|
|
$temp =~ s/'\'/$slash/g;
|
|
print ("\n");
|
|
print ($temp);
|
|
|
|
|