wok-current view busybox/stuff/command_not_found @ rev 24886
updated mcabber-help (0.9.10 -> 1.1.2)
author | Hans-G?nter Theisgen |
---|---|
date | Fri Apr 01 07:55:45 2022 +0100 (2022-04-01) |
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}"