wok view busybox/stuff/command_not_found @ rev 23417

updated perl-xml-simple (2.18 -> 2.25)
author Hans-G?nter Theisgen
date Wed Apr 01 07:44:12 2020 +0100 (2020-04-01)
parents 352e1cee9466
children 09d8c12d6514
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 | 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}"