glacier-old/scripts/glacier-query.sh

12 lines
290 B
Bash
Raw Normal View History

2022-04-12 12:38:01 -04:00
#!/bin/sh
# glacier-query
# Script used to query packages on the system
echo "[ ? ] Enter package name:" && read input
cat /etc/glacier/pkginfo/$input-pkginfo.json
cat /var/log/glacier/$input.timestamp
if [ "$?" != "0" ]; then
echo "[ X ] Package $input not found!" 1>&2
exit 1
fi