diff options
| author | Paul Varner <fuzzyray@gentoo.org> | 2015-01-23 15:19:42 -0600 |
|---|---|---|
| committer | Paul Varner <fuzzyray@gentoo.org> | 2015-01-23 15:19:42 -0600 |
| commit | 6f5d03a6bd34f684331837575560babfa91899ea (patch) | |
| tree | f5277417954f4f52096d2f9e9690c2df6b4f0cc0 | |
| parent | c2173483d8505ec8e89baef0266d308494fc2c36 (diff) | |
| download | gentoolkit-6f5d03a6bd34f684331837575560babfa91899ea.tar.gz | |
Fix eread to only display elog files. (Bug 534686)
| -rwxr-xr-x | bin/eread | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
