-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrepeat.pl
87 lines (68 loc) · 1.62 KB
/
repeat.pl
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
79
80
81
82
83
84
85
86
87
#!/usr/bin/perl
# Repeat
# Fabio Rodrigues ([email protected])
# Versão 1.0
use strict;
use Getopt::Std;
use DateTime;
use Term::ANSIColor qw(:constants);
local $Term::ANSIColor::AUTORESET = 1;
# declare the perl command line flags/options we want to allow
my %options=();
getopts("r:c:p:thv", \%options);
if (($options{h}) or (not %options))
{
print "
REPETE 1.0
";
print BOLD "
NOME
";
print "
repete.pl - repete um comando um determinado número de vezes, adicionando uma pausa entre as execuções
";
print BOLD "
SINOPSE
";
print BOLD "
repete.pl";
print " [opções]
";
print BOLD "
OPÇÕES
";
print "
-r Número de repetições (não informar para repetições infinitas).
-c Comando a ser utilizado. Caso contenha mais de uma palavra utilizar aspas.
-p Pausa durante as execuções (em segundos)
-t Mostra o momento em que cada comando foi executado
-h Mostra esta ajuda e finaliza
-v Informa a versão e finaliza\n\n";
exit;
}
if ($options{v})
{
print "repete.pl versão 1.0\n";
exit;
}
my $counter = $options{r};
my $cmd = $options{c};
my $pause = $options{p};
if ($counter != '') {
while ($counter > 0)
{
if ($options{t}) { print DateTime->now()->strftime("%a, %d %b %Y %H:%M:%S \now=========================\n") }
system("$cmd");
$counter--;
if ($counter != 0) {sleep ($pause); }
}
}
if ($counter == '') {
while ()
{
if ($options{t}) { print DateTime->now()->strftime("%a, %d %b %Y %H:%M:%S \n=========================\n") }
system("$cmd");
$counter--;
if ($counter != 0) {sleep ($pause); }
}
}