Abrindo corretamente um arquivo em Perl
Vamos começar com algum código, certo? use strict;use warnings;use v5.14;# Let’s just pull off the first argument and use it # as our filenamemy $filename = $ARGV[0];if ($filename) { # …
Continuar lendoConteúdo para você se capacitar em programação
Vamos começar com algum código, certo? use strict;use warnings;use v5.14;# Let’s just pull off the first argument and use it # as our filenamemy $filename = $ARGV[0];if ($filename) { # …
Continuar lendoDe vez em quando, preciso executar uma tarefa que envolve muito IO no disco. Computacionalmente não é muito intenso, mas continua tendo que atingir meu disco físico e sistema de …
Continuar lendo