Test command and redirection bash
Why does test > file
exit with 1 while test arg1 > arg2
exit with 0 ?
I thought that in test arg1 > arg2
, test arg1
is applied first then the output(it has none) written to file arg2
and since the last command(redirection) was successful the exit is 0. But so should the first case. I am a bit confused.
linux bash shell command-line scripting
add a comment |
Why does test > file
exit with 1 while test arg1 > arg2
exit with 0 ?
I thought that in test arg1 > arg2
, test arg1
is applied first then the output(it has none) written to file arg2
and since the last command(redirection) was successful the exit is 0. But so should the first case. I am a bit confused.
linux bash shell command-line scripting
2
test > file
returns non-zero for the same reasontest
returns non-zero. The redirection is irrelevant.
– William Pursell
Nov 20 '18 at 0:50
1
"The last command (redirection)" indicates a flaw in your thinking. The redirection is not a command.
– William Pursell
Nov 20 '18 at 0:50
add a comment |
Why does test > file
exit with 1 while test arg1 > arg2
exit with 0 ?
I thought that in test arg1 > arg2
, test arg1
is applied first then the output(it has none) written to file arg2
and since the last command(redirection) was successful the exit is 0. But so should the first case. I am a bit confused.
linux bash shell command-line scripting
Why does test > file
exit with 1 while test arg1 > arg2
exit with 0 ?
I thought that in test arg1 > arg2
, test arg1
is applied first then the output(it has none) written to file arg2
and since the last command(redirection) was successful the exit is 0. But so should the first case. I am a bit confused.
linux bash shell command-line scripting
linux bash shell command-line scripting
asked Nov 19 '18 at 23:56
NamelessNameless
1236
1236
2
test > file
returns non-zero for the same reasontest
returns non-zero. The redirection is irrelevant.
– William Pursell
Nov 20 '18 at 0:50
1
"The last command (redirection)" indicates a flaw in your thinking. The redirection is not a command.
– William Pursell
Nov 20 '18 at 0:50
add a comment |
2
test > file
returns non-zero for the same reasontest
returns non-zero. The redirection is irrelevant.
– William Pursell
Nov 20 '18 at 0:50
1
"The last command (redirection)" indicates a flaw in your thinking. The redirection is not a command.
– William Pursell
Nov 20 '18 at 0:50
2
2
test > file
returns non-zero for the same reason test
returns non-zero. The redirection is irrelevant.– William Pursell
Nov 20 '18 at 0:50
test > file
returns non-zero for the same reason test
returns non-zero. The redirection is irrelevant.– William Pursell
Nov 20 '18 at 0:50
1
1
"The last command (redirection)" indicates a flaw in your thinking. The redirection is not a command.
– William Pursell
Nov 20 '18 at 0:50
"The last command (redirection)" indicates a flaw in your thinking. The redirection is not a command.
– William Pursell
Nov 20 '18 at 0:50
add a comment |
1 Answer
1
active
oldest
votes
Redirection is not a command.
|
creates a new command, because not only the is output of the previous command "piped" somewhere else, but also another command is executed on that output. For example,
ls | grep 'abc'
will exit 1 if nothing matches that pattern, regardless of whether ls
completed successfully or not). The exit status you see with $?
is the status of the last pipe.
Redirection is not the same, because it doesn't give the output to the next command in line, just to a file. Note that redirection can make you return 1 when your command would otherwise have worked because you don't have permissions to write to the file. In that case, your command won't be executed.
TL;DR: A command requires a valid redirection to run. If it can run, the exit status will be the exit status of the command. Exit status of redirection is the OR of the command and the redirection (0 OR 1, 1 OR 1, 1 OR 0 will all return 1; only a successful redirection and successful command returns 0)
2
Nit: if the redirection fails, the command is never executed so it is not correct to say that "redirection can make you return 1 when your command worked". The command never executes, so it cannot be said to have worked.
– William Pursell
Nov 20 '18 at 0:53
@WilliamPursell, thanks, edited
– jeremysprofile
Nov 20 '18 at 2:52
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384333%2ftest-command-and-redirection-bash%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Redirection is not a command.
|
creates a new command, because not only the is output of the previous command "piped" somewhere else, but also another command is executed on that output. For example,
ls | grep 'abc'
will exit 1 if nothing matches that pattern, regardless of whether ls
completed successfully or not). The exit status you see with $?
is the status of the last pipe.
Redirection is not the same, because it doesn't give the output to the next command in line, just to a file. Note that redirection can make you return 1 when your command would otherwise have worked because you don't have permissions to write to the file. In that case, your command won't be executed.
TL;DR: A command requires a valid redirection to run. If it can run, the exit status will be the exit status of the command. Exit status of redirection is the OR of the command and the redirection (0 OR 1, 1 OR 1, 1 OR 0 will all return 1; only a successful redirection and successful command returns 0)
2
Nit: if the redirection fails, the command is never executed so it is not correct to say that "redirection can make you return 1 when your command worked". The command never executes, so it cannot be said to have worked.
– William Pursell
Nov 20 '18 at 0:53
@WilliamPursell, thanks, edited
– jeremysprofile
Nov 20 '18 at 2:52
add a comment |
Redirection is not a command.
|
creates a new command, because not only the is output of the previous command "piped" somewhere else, but also another command is executed on that output. For example,
ls | grep 'abc'
will exit 1 if nothing matches that pattern, regardless of whether ls
completed successfully or not). The exit status you see with $?
is the status of the last pipe.
Redirection is not the same, because it doesn't give the output to the next command in line, just to a file. Note that redirection can make you return 1 when your command would otherwise have worked because you don't have permissions to write to the file. In that case, your command won't be executed.
TL;DR: A command requires a valid redirection to run. If it can run, the exit status will be the exit status of the command. Exit status of redirection is the OR of the command and the redirection (0 OR 1, 1 OR 1, 1 OR 0 will all return 1; only a successful redirection and successful command returns 0)
2
Nit: if the redirection fails, the command is never executed so it is not correct to say that "redirection can make you return 1 when your command worked". The command never executes, so it cannot be said to have worked.
– William Pursell
Nov 20 '18 at 0:53
@WilliamPursell, thanks, edited
– jeremysprofile
Nov 20 '18 at 2:52
add a comment |
Redirection is not a command.
|
creates a new command, because not only the is output of the previous command "piped" somewhere else, but also another command is executed on that output. For example,
ls | grep 'abc'
will exit 1 if nothing matches that pattern, regardless of whether ls
completed successfully or not). The exit status you see with $?
is the status of the last pipe.
Redirection is not the same, because it doesn't give the output to the next command in line, just to a file. Note that redirection can make you return 1 when your command would otherwise have worked because you don't have permissions to write to the file. In that case, your command won't be executed.
TL;DR: A command requires a valid redirection to run. If it can run, the exit status will be the exit status of the command. Exit status of redirection is the OR of the command and the redirection (0 OR 1, 1 OR 1, 1 OR 0 will all return 1; only a successful redirection and successful command returns 0)
Redirection is not a command.
|
creates a new command, because not only the is output of the previous command "piped" somewhere else, but also another command is executed on that output. For example,
ls | grep 'abc'
will exit 1 if nothing matches that pattern, regardless of whether ls
completed successfully or not). The exit status you see with $?
is the status of the last pipe.
Redirection is not the same, because it doesn't give the output to the next command in line, just to a file. Note that redirection can make you return 1 when your command would otherwise have worked because you don't have permissions to write to the file. In that case, your command won't be executed.
TL;DR: A command requires a valid redirection to run. If it can run, the exit status will be the exit status of the command. Exit status of redirection is the OR of the command and the redirection (0 OR 1, 1 OR 1, 1 OR 0 will all return 1; only a successful redirection and successful command returns 0)
edited Nov 20 '18 at 2:54
answered Nov 20 '18 at 0:20


jeremysprofilejeremysprofile
1,6331517
1,6331517
2
Nit: if the redirection fails, the command is never executed so it is not correct to say that "redirection can make you return 1 when your command worked". The command never executes, so it cannot be said to have worked.
– William Pursell
Nov 20 '18 at 0:53
@WilliamPursell, thanks, edited
– jeremysprofile
Nov 20 '18 at 2:52
add a comment |
2
Nit: if the redirection fails, the command is never executed so it is not correct to say that "redirection can make you return 1 when your command worked". The command never executes, so it cannot be said to have worked.
– William Pursell
Nov 20 '18 at 0:53
@WilliamPursell, thanks, edited
– jeremysprofile
Nov 20 '18 at 2:52
2
2
Nit: if the redirection fails, the command is never executed so it is not correct to say that "redirection can make you return 1 when your command worked". The command never executes, so it cannot be said to have worked.
– William Pursell
Nov 20 '18 at 0:53
Nit: if the redirection fails, the command is never executed so it is not correct to say that "redirection can make you return 1 when your command worked". The command never executes, so it cannot be said to have worked.
– William Pursell
Nov 20 '18 at 0:53
@WilliamPursell, thanks, edited
– jeremysprofile
Nov 20 '18 at 2:52
@WilliamPursell, thanks, edited
– jeremysprofile
Nov 20 '18 at 2:52
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53384333%2ftest-command-and-redirection-bash%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
test > file
returns non-zero for the same reasontest
returns non-zero. The redirection is irrelevant.– William Pursell
Nov 20 '18 at 0:50
1
"The last command (redirection)" indicates a flaw in your thinking. The redirection is not a command.
– William Pursell
Nov 20 '18 at 0:50