replify "�S�U ���S�U #!/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" read -r input done example.md HN Discussion $ replify echo Initialized REPL for [echo] echo> "Hello, World!" Hello, World! echo> "It works!" It works! $ replify git Initialized REPL for [git