Langue

Shell Bridge

Shell Bridge

Modrinth

A Minecraft mod that allows you to run shell commands from chat.

722 téléchargements 11 abonnés mis à jour 9mo ago
dernière v1.3.0 Modrinth
Fabric 1.19.3 – 1.21.8 Utility

A Minecraft mod that allows you to run shell commands via chat. \

It supports Linux and Windows shells. [ Bash & Powershell ]
use $config script_command "powershell.exe {path}" if on windows

Demo .gif

Commands

$help [command name (optional) - lists commands
$exec [args] - executes arguments in shell
$stop - stops current process
$cd [path] - changes working directory of the shell
$clear - clears the chat
$config- change config
$run - runs a script (more changes to come to this soon)

Config help

only option is $config script_command [value]
this is used when you do $run [path]
you can do {path} to put where the script path is
the reason for this is because different os use different executors such as bash or powershell
also it means you can do python or any other scripting command

Shell to minecraft?

This is a feature being worked on

Commands

asplayer [what does player put in chat]

powershell - script.ps1:

param (
    [Parameter(Mandatory=$true)]
    [string]$argument
)

$hostname = "localhost"
$port = 1234

$socket = New-Object System.Net.Sockets.TcpClient($hostname, $port)
$stream = $socket.GetStream()
$writer = New-Object System.IO.StreamWriter($stream)
$reader = New-Object System.IO.StreamReader($stream)

$writer.WriteLine($argument)
$writer.Flush()

$response = $reader.ReadLine()
Write-Host $response

$socket.Close()

to run it:

.\script.ps1 -argument "asplayer  [what does player put in chat]"

bash script.sh:

#!/bin/bash

argument=$1
hostname="localhost"
port=1234

exec 3<>/dev/tcp/$hostname/$port

echo "$argument" >&3
response=$(head -n 1 <&3)

echo $response

exec 3<&-
exec 3>&-

to run it:

./script.sh "asplayer  [what does player put in chat]"

About Project

Author: Username-31415
Contributor: Silverainox

Future releases will add support for based API's like Git, Pastebin, etc to allow users working with their beloved software directly from Minecraft.

We also value community feedback and reports as its critical for us to eventually perfect this project :)

If you have any questions or have a suggestion, feel free to join our community Discord server
[ Szmelc & Friends ] ~ [ Based Projects Server ] - https://discord.gg/dtEvHFXnSb

My discord username is:
@3_14159265358

Versions

Release
1.3.0
fabric · 1.21.8 · 9mo ago
Updated for 1.21.8 and fixed a bug on linux where processes failed to kill + fixed a crash when many things get spammed
57
Release
1.2.1
fabric · 1.20, 1.20.1 · 35mo ago
Updated to 1.20.1
261
Release
1.2.1
fabric · 1.19.3, 1.19.4 · 39mo ago
### Fixes Fixed some bugs $run stuck in instance fixed Fixed output delay until program closed ### Additions Added ansi color support and clear support
166
Beta
1.2.0
fabric · 1.19.3, 1.19.4 · 39mo ago
**Fixes:** <br> Fixed a bug with $cd when viewing folder where it only shows the current run folder instead of actual folder. **Additions:** Added "asplayer…
116
Alpha
1.1.0
fabric · 1.19.3, 1.19.4 · 39mo ago
122

Commentaires 0

Aucun commentaire pour l'instant. Sois le premier à donner ton avis.

Télécharger Shell Bridge

Les fichiers proviennent directement de la source d'origine. Modgrid ne les héberge ni ne les modifie.