-
Notifications
You must be signed in to change notification settings - Fork 0
/
module.pm
78 lines (66 loc) · 1.68 KB
/
module.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/perl
use 5.12.1;
use warnings;
use strict;
package IdentSystem;
sub le {
my $modulo = shift;
my $titulo = shift;
my $local = shift;
my $linha = 0;
open (my $arquivo, "<".$local."/".$titulo."_".$modulo.".fgm") or die "Não foi possível abrir o $titulo:$!";
while (<$arquivo>) {
if ($linha == 0) { $linha++;}
else { print "$_ \n"; }
}
close($arquivo);
<>;
Interface::mostra_principal($titulo);
}
sub escreve {
my $modulo = shift;
my $titulo = shift;
my $local = shift;
open (my $arquivo, ">".$local."/".$titulo."_".$modulo.".fgm") or die "Não foi possível abrir o $titulo:$!";
print $arquivo ">>>".$modulo."<<< \n Comece a editar aqui!";
close($arquivo);
system "vi ".$local."/".$titulo."_".$modulo.".fgm";
Interface::mostra_principal($titulo);
}
sub altera {
my $modulo = shift;
my $titulo = shift;
my $local = shift;
system "vi ".$local."/".$titulo."_".$modulo.".fgm";
Interface::mostra_principal($titulo);
}
sub deleta {
my $modulo = shift;
my $titulo = shift;
my $local = shift;
unlink ($local."/".$titulo."_".$modulo.".fgm");
Interface::mostra_principal($titulo);
}
sub trim
{
my $string = shift;
$string =~ s/^\s+//;
$string =~ s/\s+$//;
return $string;
}
sub str_replace {
my $replace_this = shift;
my $with_this = shift;
my $string = shift;
my $length = length($string);
my $target = length($replace_this);
$string =~ s/$replace_this/$with_this/;
for(my $i=0; $i<$length - $target + 1; $i++) {
if(substr($string,$i,$target) eq $replace_this) {
$string = substr($string,0,$i) . $with_this . substr($string,$i+$target);
return $string; #Comment this if you what a global replace
}
}
return $string;
}
42;