wok-6.x view busybox/stuff/command_not_found @ rev 23953
mrxvt-unicode: modified dependencies
author | Hans-G?nter Theisgen |
---|---|
date | Tue Sep 22 16:18:32 2020 +0100 (2020-09-22) |
parents | def8459358ed |
children |
line source
1 #!/bin/sh
3 FILES=/var/lib/tazpkg/files.list.lzma
4 LIST=/tmp/command-list.gz
5 [ -s $FILES ] && [ ! $LIST -nt $FILES ] && unlzma <$FILES | \
6 grep -E "(: ${PATH//:/|: })" | gzip -9 >$LIST && chmod 666 $LIST
8 lookup() {
9 zcat $LIST 2> /dev/null | grep "/$2$1$" | if read pkg file; then
10 cat <<EOT
11 Command '$1' not found, but can be installed as root with:
13 tazpkg -gi ${pkg%:}
14 ${2:+$2$1}
15 EOT
16 fi
17 }
19 MSG="$(lookup "$1")"
20 [ "$MSG" ] || MSG="$(lookup "$1" get-)"
21 echo "${MSG:-${SHELL##*/}: $1: not found}"