From eb3c99542612c2403a27f9238fdce9df7dadb9a9 Mon Sep 17 00:00:00 2001 From: Ole Tange Date: Tue, 8 Jan 2019 01:20:11 +0100 Subject: [PATCH] vid: Added file extension ASF. --- vid/vid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vid/vid b/vid/vid index 4af42de..5e0cf18 100755 --- a/vid/vid +++ b/vid/vid @@ -95,11 +95,11 @@ update_list() { (cd "$full_path_vidlist_dir" && # Find video files, print them with size prepended ionice -c 3 find . -iregex \ - '.*\(webm\|rm\|mov\|mpg\|mpeg\|avi\|wmv\|flv\|mp4\|3gp\)$' \ + '.*\(webm\|rm\|mov\|mpg\|mpeg\|asf\|avi\|wmv\|flv\|mp4\|3gp\)$' \ -type f -printf '%s\t%p\n' || # If ionice -c 3 fails, try without find . -iregex \ - '.*\(webm\|rm\|mov\|mpg\|mpeg\|avi\|wmv\|flv\|mp4\|3gp\)$' \ + '.*\(webm\|rm\|mov\|mpg\|mpeg\|asf\|avi\|wmv\|flv\|mp4\|3gp\)$' \ -type f -printf '%s\t%p\n') | # Sort by size sort -rn |