ねもぷらす

ふぁいんでぃんぐねもの日記。プログラミングとか育児とか

2005-12-20から1日間の記事一覧

DBM 覚え書

参考: http://www.unix.org.ua/orelly/perl/cookbook/ch14_02.htm #!/usr/bin/perl -w use strict; use warnings; use DB_File; use Time::Local; use constant INTERVAL => 1800; # sec use constant DB_FILE => './last.db'; my $debug = 1; eval{ # now …

sandmail プログラム 覚え書

参考: https://www.stackasterisk.jp/tech/systemConstruction/postfix01_01.jsp http://www.stackasterisk.jp/tech/program/perl03_03.jsp #!/usr/bin/perl -w use strict; use warnings; my $from = "mail.from.hoge\@example.com"; my $to = "mail.to.ho…