Skip to content

Instantly share code, notes, and snippets.

View Conkernel's full-sized avatar

Conkernel Conkernel

View GitHub Profile
@Conkernel
Conkernel / dotfiles.sh
Last active February 27, 2024 20:38
Automatizar dotfiles (en construcción!!)
#!/bin/bash
#set -x
# Antes de nada revisamos si tenemos permisos de sudo:
if [[ $EUID -ne 0 ]]; then
echo "[-] Este script debe ejecutarse con permisos de root. Saliendo..."
exit 1
fi