#!/usr/bin/env sh # only print packages that were upgraded (crude) doas pkg_add -uv | grep "ok" || true # vim: ai et ft=sh sts=4 sw=4 ts=4