我放置了一些脚本,每天运行,并且写入到 run.log 里面,我想把每天写入 log 时,同时发送到 server 酱,请问刚怎么做?
1
AlisaDestiny 2019-04-17 23:25:47 +08:00 1
在你的脚本最后一行添加:
desc=`cat run.log` curl "https://sc.ftqq.com/你的 scu_key.send" -d "text=notification&desc=${desc}" |
2
powersee OP @AlisaDestiny 谢谢,不过这样我得每次都先把 log 清空,再写入。或许弄两个 log 就能解决吧
|
3
powersee OP 上面的脚本倒数第二个单词错了,应该是 desp,即
text=notification&desp=${desc}" |
4
yuikns 2019-04-18 02:03:57 +08:00 1
这时候你需要 tee ?
function my_logger() { local desc=$(echo $1 | tee -a run.log) echo "curl your desc: $1" } my_logger "my desc" |