6 lines
134 B
Bash
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
|