This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"id": "christian-kohler.path-intellisense", | |
"name": "path-intellisense", | |
"publisher": "christian-kohler", | |
"version": "2.9.0" | |
}, | |
{ | |
"id": "DavidAnson.vscode-markdownlint", | |
"name": "vscode-markdownlint", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 | |