summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/eread6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/eread b/bin/eread
index d74a167..fe095a6 100755
--- a/bin/eread
+++ b/bin/eread
@@ -34,13 +34,13 @@ PS3="Choice? "
SORT=${EREAD_SORT_ORDER}
find_unsorted() {
- find . -type f | sed -e "s:\./::g"
+ find . -name '*:*:*.log*' | sed -e "s:\./::g"
}
find_by_name() {
- find . -type f | sort | sed -e "s:\./::g"
+ find . -name '*:*:*.log*' | sort | sed -e "s:\./::g"
}
find_by_time() {
- find . -type f | sort -k 3 -t : | sed -e "s:\./::g"
+ find . -name '*:*:*.log*' | sort -k 3 -t : | sed -e "s:\./::g"
}
find_files() {
case ${SORT} in