목록프로그래밍/Perl (3)
내블로그
파일 수정시간
use File::stat; $timestamp = stat(파일명)->mtime;
프로그래밍/Perl
2019. 10. 8. 10:53
Timer
#!/usr/bin/perluse strict;use warnings;use Time::HiRes qw(ITIMER_REAL setitimer); $SIG{ALRM} = sub {};setitimer(ITIMER_REAL, 0.1, 3);while (1) { sleep ; print time()." : Main Loop\n";}
프로그래밍/Perl
2017. 4. 12. 13:49
perl MCPAN
perl -MCPAN -e 'command'
프로그래밍/Perl
2012. 2. 28. 14:27