2024-06-21 15:57:48 +02:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
if [[ $1 == "version" ]]
|
|
|
|
then
|
2024-08-31 04:10:09 +02:00
|
|
|
apt-cache show $2 | grep Version: | cut -d":" -f2 | head -n1
|
2024-06-21 15:57:48 +02:00
|
|
|
elif [[ $1 == "description" ]]
|
|
|
|
then
|
2024-08-31 04:10:09 +02:00
|
|
|
apt-cache show $2 | grep 'Description*' | cut -d":" -f2 | head -n1
|
2024-06-21 15:57:48 +02:00
|
|
|
fi
|