#!/bin/sh
LIST="eget"
if [ "$1" = "--detail" ] ; then
if [ -n "$2" ] ; then
LIST="$2"
bash --rpm-requires $LIST | sort -u | grep "executable"
exit
fi
for i in $LIST ; do
echo
echo "==== $i:"
/usr/lib/rpm/shell.req $i
done
exit 0
fi
/usr/lib/rpm/shell.req $LIST | sort -u | tee ./check_eget.log
git diff ./check_eget.log
-
Vitaly Lipatov authored
- eget: improve is_url checking - eget: disable checking for globbing symbol ? in URL - eget: fix URL concatenation - eget: add -4/-6 support (force use IPv4/6) - eget: comment out set_quiet for --check - eget: add support for single quote - eget: update which workaround - eget: update tty functions
dfd25dc2