View qvm-port-forward.sh
#!/bin/sh | |
# Inspired by https://gist.github.com/daktak/f887352d564b54f9e529404cc0eb60d5 | |
ip() { qvm-ls --raw-data ip -- "$1"; } | |
netvm() { qvm-prefs -g -- "$1" netvm; } | |
forward() { | |
local from_domain=$1 | |
local to_domain=$2 |
View wyng-extract.sh
#!/usr/bin/env bash | |
# wyng-extract.sh - Simple disk image extractor for Wyng archives. | |
# Christopher Laprise, tasket@github.com | |
set -eo pipefail | |
LC_ALL=C | |
if [ "$1" = "-c" ] & [ -d "$2" ]; then |