From e70ca0afc219960d94bc03bc7d6c6712d05c1b5e Mon Sep 17 00:00:00 2001 From: Christopher Roy Bratusek Date: Sun, 5 May 2019 20:03:37 +0200 Subject: [PATCH] logcat init script: simplify --- Full/system/etc/init.d/logcat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Full/system/etc/init.d/logcat b/Full/system/etc/init.d/logcat index 32983e5..8a25e07 100755 --- a/Full/system/etc/init.d/logcat +++ b/Full/system/etc/init.d/logcat @@ -7,4 +7,4 @@ CURDATE=$(date +%Y%m%d-%I.%M.%S) # remove files older than a week to prevent pollution find /data/adb/logcat/ -mtime +8 -exec rm -f {} \; -logcat | tee -a "/data/adb/logcat/${CURDATE}" +logcat -f "/data/adb/logcat/${CURDATE}" &