mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 07:30:43 +00:00
10 lines
146 B
Bash
Executable file
10 lines
146 B
Bash
Executable file
#!/bin/bash
|
|
mlr "$@"
|
|
status=$?
|
|
if [ $status -eq 0 ]; then
|
|
echo "Failed to fail!"
|
|
exit 1
|
|
else
|
|
echo "Failed as expected."
|
|
exit 0
|
|
fi
|