zupdate/commands/apt_local_size
2020-08-24 14:17:39 +02:00

8 lines
191 B
Bash

#!/bin/sh
dpkg -s %s 2>/dev/null| grep -E '^Version:|^Installed-Size:' | awk '
{
if($1=="Installed-Size:") is=$2*1024;
else if($1=="Version:") v=$2;
}END{
printf "%%s\n%%u\n", v, is
}'