Skip to content

Instantly share code, notes, and snippets.

@dkosmari
dkosmari / fetch-wiiu-crash-logs.sh
Last active July 3, 2024 21:38
A shell script to fetch Wii U crash logs through FTPiiU plugin. Requires wget and sed.
#!/bin/sh -e
# This script copies crash logs from a Wii U running Aroma with FTPiiU plugin.
# It depends on lftp command.
WIIU_ADDRESS=${1:-wiiu}
TEMP_PATH=$(mktemp -d)
if [[ -z "${TEMP_PATH}" ]]