5 lines
125 B
Bash
5 lines
125 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# A trivial script to be packaged by the flake.
|
||
|
|
name="${1:-world}"
|
||
|
|
echo "hello, ${name}! (built by nix)"
|