Linuxhttps.blog.chinaunix.net
viviecho
全部博文(279)
2013年(1)
2012年(39)
2011年(35)
2009年(29)
2008年(131)
2007年(44)
marsgray
abc123zx
lionking
cynthia
格伯纳
Bsolar
浪花小雨
danxingd
shibaola
快乐的小
小石匠_
linxuegu
分类:
2008-01-30 13:45:21
#!/usr/bin/perl -w# a daemon simpleuse strict;# become daemonmy $pid = fork();print $pid,"\n";if($pid) { #end parent process print "#parent process"; exit(0);}else { print "#child process";}# set new process groupsetpgrp;while(1) { sleep(30); open ("TEST",">;>;/tmp/test.log"); my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time); $year+=1900;$mon++; print TEST ("Now is $year-$mon-$mday $hour:$min:$sec.\n"); close (TEST);}
上一篇:与sendmail交互
下一篇:mysql how to change password
登录 注册