0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

logmon学習中

Last updated at Posted at 2025-07-21

今日はここから

参考サイト

logmonソースコード

systemd

課題のソースコード

chomp; $_ =~ s/^\s+//; $_ =~ s/\s+$//; $_=~ s/#.*$//;

confファイルの前方のスペースを消す

 $_ =~ s/^\s+//;

confファイルの後方のスペースを消す

$_ =~ s/\s+$//;

コメント行を消す

$_=~ s/#.*$//;

スカラー関数を複数定義している

my ( $target, $message, $action );

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?