From 4ab77fd30977317728c5c86ce2893a18118efd43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Fri, 17 Jan 2025 14:32:39 +0100 Subject: [PATCH] Remove monero-client. I just use the GUI client now. --- monero-client | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 monero-client diff --git a/monero-client b/monero-client deleted file mode 100755 index a44e133..0000000 --- a/monero-client +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -set -euo pipefail - -[ "$#" -eq 0 ] && - echo "Requires a command. Run with 'help' for a list of commands." && - exit 1 - -case $1 in - "wallet") - monero-wallet-cli --daemon-address node.monero.net:13666 - ;; - "address") - echo "42espNaUqPdJK4vTir4NDfH4gT6brFR4F5KPRADrg5t98LkzHnQfFnUDZZEetp3Zw5K8V4v364tN3TMxfg4eXEN9RpnrNBG" - ;; - "help") - echo "USAGE: monero-client [command] -Commands: - address print out the monero public address - mine start the miner - wallet open the monero wallet - help show this help information" - ;; - *) - echo "Invalid command '$1'. Please run with the 'help' option." - ;; -esac