diff options
Diffstat (limited to 'examples/command.sh')
-rwxr-xr-x | examples/command.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/command.sh b/examples/command.sh new file mode 100755 index 0000000..52a5666 --- /dev/null +++ b/examples/command.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# even though we have no headers +# we still need to tell there will be no more headers +printf "\n" + +neofetch + +# return http code 418 im a teapot +exit 418 + |