baz-example-plugin/plugin/runners/1
Ari Archer c776c23176
update @ Thu 19 May 00:46:34 EEST 2022
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-05-19 00:46:34 +03:00

6 lines
134 B
Bash

#!/usr/bin/env bash
echo "Hello world, what's your name?"
read -r -p '>> ' name
echo "Nice you meet you, ${name:-$(whoami)}"
sleep 1