Skip to content

Instantly share code, notes, and snippets.

View jaalzateolaya's full-sized avatar

Alexander Alzate jaalzateolaya

View GitHub Profile
@jaalzateolaya
jaalzateolaya / mysql_db_backup.sh
Last active December 14, 2019 06:00
A backup script for humans
#!/bin/bash
DB_NAME=$1
DB_HOST=$2
DB_USER="root"
DB_PASS="root"
BK_FOLDER="/tmp/backup"
BK_FILE_NAME="Dump$(date +%Y%m%d)"
@jaalzateolaya
jaalzateolaya / archvm.sh
Created August 24, 2016 22:31 — forked from Phaeilo/archvm.sh
Archlinux VM automated installation script.
#!/bin/bash
# The MIT License (MIT)
#
# Copyright (c) 2015 Philip Huppert
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of