Skip to content

Instantly share code, notes, and snippets.

View ExilProductions's full-sized avatar
💭
ehe

Exil Productions ExilProductions

💭
ehe
View GitHub Profile
@ExilProductions
ExilProductions / install-vcpkg.sh
Last active November 29, 2025 14:26
Linux VCPKG Quick install Script
#!/usr/bin/env bash
set -e
VCPKG_DIR="/opt/vcpkg"
BASHRC_FILE="$HOME/.bashrc"
ZSHRC_FILE="$HOME/.zshrc"
TAG="# >>> vcpkg PATH <<<"
uninstall() {
[ -d "$VCPKG_DIR" ] && sudo rm -rf "$VCPKG_DIR"