Realaroma (1996)
web.archive.org2 pointsby campground0 comments
function finstall {
PACKAGE_NAME=$(apt-cache search $1 | fzf | cut --delimiter=" " --fields=1)
if [ "$PACKAGE_NAME" ]; then
echo "Installing $PACKAGE_NAME"
sudo apt install $PACKAGE_NAME
fi
}