Skip to content

Instantly share code, notes, and snippets.

View Adyel's full-sized avatar
👋
Ayy !

Md Adyelullahil Mamun Adyel

👋
Ayy !
  • Therap (BD) LTD
  • Dhaka, Bangladesh
  • 23:51 (UTC +06:00)
  • LinkedIn in/ady3l
  • Facebook Ady3l
View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@Adyel
Adyel / post_install.sh
Last active March 31, 2018 13:43 — forked from waleedahmad/post_install.sh
Ubuntu post installation script for installing software of your choice.
#!/bin/bash
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root"
exit 1
else
#Update and Upgrade
echo "Updating and Upgrading"
apt-get update && sudo apt-get upgrade -y