kiss: added kiss-reset to contrib

This commit is contained in:
Dylan Araps 2019-11-23 10:33:15 +00:00
parent db08bf7bac
commit bbb2d622d9
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 23 additions and 0 deletions

23
contrib/kiss-reset Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh -ef
#
# Disable word-splittng warnings as they're safe here.
# shellcheck disable=SC2046
#
# kiss-reset: Remove all packages except for the base.
set -- \
$(kiss l | while read -r pkg _; do
case $pkg in
baselayout|binutils|bison|busybox|bzip2|curl|flex|gcc|git|\
gzip|kiss|libelf|libressl|linux-headers|m4|make|mandoc|musl|\
perl|pkgconf|rsync|xz|zlib) ;;
*) printf '%s\n' "$pkg" ;;
esac
done)
[ "$1" ] && {
printf 'WARNING: This will remove \033[1m%s\033[m package(s).\n' "$#"
printf 'Continue? [Enter/Ctrl+C]\n'
read -r _ && KISS_FORCE=1 kiss r "$@"
}