Skip to content

Instantly share code, notes, and snippets.

View ecellani's full-sized avatar

Érick Cellani ecellani

View GitHub Profile
@danielrw7
danielrw7 / replify
Last active October 24, 2023 12:03
replify - Create a REPL for any command
#!/bin/sh
command="${*}"
printf "Initialized REPL for `%s`\n" "$command"
printf "%s> " "$command"
read -r input
while [ "$input" != "" ];
do
eval "$command $input"
printf "%s> " "$command"
@matheustardivo
matheustardivo / README.md
Last active April 29, 2016 13:31
Cluster ssh tool for Terminal.app

Cluster ssh tool for Terminal.app

O primeiro passo é instalar o Cluster ssh tool for Terminal.app ou csshX:

brew install csshx

Depois, incluir o script abaixo no seu .bashrc:

function server() {