-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add tests and fix appending files * update logs path * put back log logic
- Loading branch information
Showing
2 changed files
with
38 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
# 检查参数数量 | ||
if [ "$#" -ne 2 ]; then | ||
echo "用法: $0 <文件名> <时间间隔(秒)>" | ||
exit 1 | ||
fi | ||
|
||
FILE_NAME=$1 | ||
INTERVAL=$2 | ||
|
||
# 检查文件是否存在,如果不存在则创建 | ||
if [ ! -f "$FILE_NAME" ]; then | ||
touch "$FILE_NAME" | ||
echo "创建文件: $FILE_NAME" | ||
fi | ||
|
||
# 无限循环,每隔指定时间追加内容 | ||
counter=1 | ||
while true; do | ||
echo "追加第 $counter 行内容 - $(date)" >>"$FILE_NAME" | ||
echo "已追加第 $counter 行内容" | ||
counter=$((counter + 1)) | ||
sleep "$INTERVAL" | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters