Skip to content
This repository has been archived by the owner on May 27, 2024. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Maho Takara committed Apr 7, 2021
1 parent 52b4e8b commit b01ed81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion step05/my_daemon
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ -z "$INTERVAL" ]; then
fi

# メインループ
while [ ture ];
while true;
do
TM=`date|awk '{print $4}'`
printf "%s : %s \n" $TM $COUNT
Expand Down
2 changes: 1 addition & 1 deletion step05/my_daemon2
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ trap save TERM


# メインループ
while [ ture ];
while true;
do
TM=`date|awk '{print $4}'`
printf "%s : %s \n" $TM $COUNT
Expand Down
2 changes: 1 addition & 1 deletion step05/my_daemon3
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ trap save TERM


# メインループ
while [ ture ];
while true;
do
TM=`date|awk '{print $4}'`
printf "%s : %s \n" $TM $COUNT
Expand Down

0 comments on commit b01ed81

Please sign in to comment.