From a8adf3ab78e5ab5cb35330f2f21363d884977b3a Mon Sep 17 00:00:00 2001 From: sctech <100468871+sctech-tr@users.noreply.github.com> Date: Wed, 16 Oct 2024 19:42:42 +0300 Subject: [PATCH] Create installer_client.sh --- installer_client.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 installer_client.sh diff --git a/installer_client.sh b/installer_client.sh new file mode 100644 index 0000000..ecf1816 --- /dev/null +++ b/installer_client.sh @@ -0,0 +1,12 @@ +#!/usr/bin/sh + +mkdir -p ~/.rmsh + +cd ~ +git clone https://github.com/remote-shell/client.git +cd client + +cp client.py ~/.rmsh/ +ln -s client.py /usr/bin/rmsh + +echo "Client installation completed. You can run the client with 'rmsh'."