* try to support DSM log button

This commit is contained in:
Reinhard Pointner 2015-03-29 10:08:00 +00:00
parent 5b8a80e1be
commit d1566c5bc8
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ case "$1" in
;;
log)
find "$APP_ROOT/data" -name "*.log" -type f -print0 | xargs -0 ls -Alt1 | head -n 5 | awk '{print $7}'
// select most recently modified log file (Caveats: the path of the log file must not contain spaces)
find "$APP_ROOT/data" -name "*.log" -type f -print0 | xargs -0 ls -Alt1 | head -n 1 | awk '{print $7}'
exit 0
;;