Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Capture piped exit codes in scripts and use those for exit codes. #129

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion btrfs-balance.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,6 @@ case "$BTRFS_LOG_OUTPUT" in
*) cat;;
esac

exit 0
# Capture exit code from the piped command above and return it
EXIT_STATUS=${PIPESTATUS[0]}
exit $EXIT_STATUS
4 changes: 3 additions & 1 deletion btrfs-defrag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,6 @@ case "$BTRFS_LOG_OUTPUT" in
*) cat;;
esac

exit 0
# Capture exit code from the piped command above and return it
EXIT_STATUS=${PIPESTATUS[0]}
exit $EXIT_STATUS
4 changes: 3 additions & 1 deletion btrfs-scrub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,6 @@ case "$BTRFS_LOG_OUTPUT" in
*) cat;;
esac

exit 0
# Capture exit code from the piped command above and return it
EXIT_STATUS=${PIPESTATUS[0]}
exit $EXIT_STATUS
4 changes: 3 additions & 1 deletion btrfs-trim.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,6 @@ case "$BTRFS_LOG_OUTPUT" in
*) cat;;
esac

exit 0
# Capture exit code from the piped command above and return it
EXIT_STATUS=${PIPESTATUS[0]}
exit $EXIT_STATUS