Skip to content

Instantly share code, notes, and snippets.

View gzapico's full-sized avatar
👋
I may be slow to respond.

Gustavo Zapico gzapico

👋
I may be slow to respond.
View GitHub Profile
@gzapico
gzapico / post_install.sh
Last active December 20, 2022 22:58 — forked from paulness/post_install.sh
Ubuntu post installation script for installing software of your choice
#!/bin/bash
curl_check ()
{
echo "Checking for curl..."
if command -v curl > /dev/null; then
echo "Detected curl..."
else
echo "Installing curl..."
apt-get install -q -y curl