Skip to content

Instantly share code, notes, and snippets.

@kjfs
kjfs / esxi-iso-to-boot-usb.sh
Created February 20, 2021 09:53 — forked from esutton/esxi-iso-to-boot-usb.sh
Create bootable USB installer for vSphere ESXi Using MacOS
#!/bin/bash
#
#
# Create bootable USB installer for vSphere ESXi on macOS
# 1) Boot using the resulting installer
# 2) Install ESXi to a second high-speed USB 3.0 device
# 3) Make a copy of the installed USB ESXi for emergencies
#
# https://github.com/cbednarski/vmware-usb-osx
#
@kjfs
kjfs / delete-vpc.sh
Last active May 9, 2021 10:39 — forked from cjp/delete-vpc.sh
Delete AWS VPC including dependencies
#!/bin/sh -eu
#
# Delete a VPC and its dependencies
if [ -z "$1" ] then
echo "usage: $0 <vpcid>"
exit 64
fi
vpcid="$1"