#!/bin/bash

 sudo apt update
 if [[ "$1" ]]; then
   sudo apt install "$1"
 fi
 
