#!/bin/bash

apt update

dpkg -s curl
if [ $? -ne 0 ]
then
    apt install curl
fi
