Skip to content

Instantly share code, notes, and snippets.

@dkosmari
dkosmari / fetch-wiiu-crash-logs.sh
Last active May 19, 2024 04:57
A shell script to fetch Wii U crash logs through FTPiiU plugin. Requires wget and sed.
#!/bin/sh -e
# This scripts copies crash logs from a Wii U running Aroma with FTPiiU plugin.
WIIU_ADDRESS=${1:-wiiu}
TEMP_PATH=$(mktemp -d)
if [[ -z "$TEMP_PATH" ]]
then