mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 16:34:32 +01:00
7 lines
88 B
Bash
7 lines
88 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
echo "to stderr" 1>&2
|
||
|
echo "to stdout"
|
||
|
|
||
|
exit "$1"
|