mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-02 08:25:02 -04:00
* allow spaces in log files
This commit is contained in:
parent
229d701564
commit
05b980f77d
@ -29,8 +29,8 @@ case "$1" in
|
||||
;;
|
||||
|
||||
log)
|
||||
# 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}'
|
||||
# select most recently modified log file
|
||||
find "$APP_ROOT/data" -name "*.log" -type f -print0 | xargs -0 ls -Alt1 | head -n 1 | sed -e 's/\s\+/\s /g' | cut -d' ' -f7-
|
||||
exit 0
|
||||
;;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user