Last active
January 3, 2025 20:13
-
-
Save oxavelar/d74761941dea86406a074b3239a34ba6 to your computer and use it in GitHub Desktop.
OpenWRT: Get and run 'crusader' from tmpfs
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
# Pulls into tmpfs, and starts a server in a separate subshell | |
# for the duration of the boot. Everything will be gone after | |
# a reboot. | |
( | |
cd /tmp | |
wget -O - https://github.com/Zoxc/crusader/releases/download/v0.3.2/Crusader-$(uname)-ARM-64-bit.tar.gz | tar -xzf - | |
/tmp/Crusader-*/crusader serve | |
) & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment