This file contains hidden or 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 | |
| #============================================================================== | |
| # Ubuntu Development Environment Setup Script | |
| # Description: Comprehensive installation script for development tools, | |
| # applications, and utilities on fresh Ubuntu VMs | |
| # Author: Generated for dotfiles repository | |
| # Usage: chmod +x ubuntu-dev-setup.sh && ./ubuntu-dev-setup.sh [--auto-approve] | |
| #============================================================================== |
This file contains hidden or 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
| #!/usr/bin/env python3 | |
| import argparse | |
| import logging | |
| import os | |
| import re | |
| import shutil | |
| import subprocess | |
| import sys | |
| import uuid |