Input and output redirection in shell
I am trying to implement input and output redirection is C. I read all of the answers to this question, but it does not work! It goes to the last if (execvp
).
I want something like this:
output redirection: ls -al > output.txt
input redirection: sort < input.txt
Here is the code that I wrote:
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return;
}
if(pid==0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1){
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY, 0600);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
if (execvp(args[0],args)==err){
printf("err");
kill(getpid(),SIGTERM);
}
}
waitpid(pid,NULL,0);
}
for the output redirection args
contains ls
and -al
. And for the input one it contains sort
.
c shell io-redirection
add a comment |
I am trying to implement input and output redirection is C. I read all of the answers to this question, but it does not work! It goes to the last if (execvp
).
I want something like this:
output redirection: ls -al > output.txt
input redirection: sort < input.txt
Here is the code that I wrote:
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return;
}
if(pid==0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1){
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY, 0600);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
if (execvp(args[0],args)==err){
printf("err");
kill(getpid(),SIGTERM);
}
}
waitpid(pid,NULL,0);
}
for the output redirection args
contains ls
and -al
. And for the input one it contains sort
.
c shell io-redirection
You don't need to test the return value fromexecvp()
— if it returns, it failed; if it succeeds, it doesn't return. You don't seem to have allowed forsort < input.txt > output.txt
— both input and output redirection on a single command.
– Jonathan Leffler
Nov 20 '18 at 6:07
Without A Minimal, Complete, and Verifiable Example (MCVE) it is hard to say what stateargs
is in? Have the elements holding'<'
or'>'
and the filenames already been removed so that only additional arguments remain?
– David C. Rankin
Nov 20 '18 at 6:07
@JonathanLeffler it is not about that, I used this approach multiple times in my code(for example inpipe
, and it didn't cause any problem), besides I tried to remove the testing of its return, but in that way, it does not go out of the loop.
– Setareh
Nov 20 '18 at 6:23
@DavidC.Rankin For this examplels -al > output.txt
: args containls
and-al
– Setareh
Nov 20 '18 at 6:23
add a comment |
I am trying to implement input and output redirection is C. I read all of the answers to this question, but it does not work! It goes to the last if (execvp
).
I want something like this:
output redirection: ls -al > output.txt
input redirection: sort < input.txt
Here is the code that I wrote:
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return;
}
if(pid==0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1){
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY, 0600);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
if (execvp(args[0],args)==err){
printf("err");
kill(getpid(),SIGTERM);
}
}
waitpid(pid,NULL,0);
}
for the output redirection args
contains ls
and -al
. And for the input one it contains sort
.
c shell io-redirection
I am trying to implement input and output redirection is C. I read all of the answers to this question, but it does not work! It goes to the last if (execvp
).
I want something like this:
output redirection: ls -al > output.txt
input redirection: sort < input.txt
Here is the code that I wrote:
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return;
}
if(pid==0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1){
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY, 0600);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
if (execvp(args[0],args)==err){
printf("err");
kill(getpid(),SIGTERM);
}
}
waitpid(pid,NULL,0);
}
for the output redirection args
contains ls
and -al
. And for the input one it contains sort
.
c shell io-redirection
c shell io-redirection
edited Nov 20 '18 at 6:28
Setareh
asked Nov 20 '18 at 5:18
SetarehSetareh
172239
172239
You don't need to test the return value fromexecvp()
— if it returns, it failed; if it succeeds, it doesn't return. You don't seem to have allowed forsort < input.txt > output.txt
— both input and output redirection on a single command.
– Jonathan Leffler
Nov 20 '18 at 6:07
Without A Minimal, Complete, and Verifiable Example (MCVE) it is hard to say what stateargs
is in? Have the elements holding'<'
or'>'
and the filenames already been removed so that only additional arguments remain?
– David C. Rankin
Nov 20 '18 at 6:07
@JonathanLeffler it is not about that, I used this approach multiple times in my code(for example inpipe
, and it didn't cause any problem), besides I tried to remove the testing of its return, but in that way, it does not go out of the loop.
– Setareh
Nov 20 '18 at 6:23
@DavidC.Rankin For this examplels -al > output.txt
: args containls
and-al
– Setareh
Nov 20 '18 at 6:23
add a comment |
You don't need to test the return value fromexecvp()
— if it returns, it failed; if it succeeds, it doesn't return. You don't seem to have allowed forsort < input.txt > output.txt
— both input and output redirection on a single command.
– Jonathan Leffler
Nov 20 '18 at 6:07
Without A Minimal, Complete, and Verifiable Example (MCVE) it is hard to say what stateargs
is in? Have the elements holding'<'
or'>'
and the filenames already been removed so that only additional arguments remain?
– David C. Rankin
Nov 20 '18 at 6:07
@JonathanLeffler it is not about that, I used this approach multiple times in my code(for example inpipe
, and it didn't cause any problem), besides I tried to remove the testing of its return, but in that way, it does not go out of the loop.
– Setareh
Nov 20 '18 at 6:23
@DavidC.Rankin For this examplels -al > output.txt
: args containls
and-al
– Setareh
Nov 20 '18 at 6:23
You don't need to test the return value from
execvp()
— if it returns, it failed; if it succeeds, it doesn't return. You don't seem to have allowed for sort < input.txt > output.txt
— both input and output redirection on a single command.– Jonathan Leffler
Nov 20 '18 at 6:07
You don't need to test the return value from
execvp()
— if it returns, it failed; if it succeeds, it doesn't return. You don't seem to have allowed for sort < input.txt > output.txt
— both input and output redirection on a single command.– Jonathan Leffler
Nov 20 '18 at 6:07
Without A Minimal, Complete, and Verifiable Example (MCVE) it is hard to say what state
args
is in? Have the elements holding '<'
or '>'
and the filenames already been removed so that only additional arguments remain?– David C. Rankin
Nov 20 '18 at 6:07
Without A Minimal, Complete, and Verifiable Example (MCVE) it is hard to say what state
args
is in? Have the elements holding '<'
or '>'
and the filenames already been removed so that only additional arguments remain?– David C. Rankin
Nov 20 '18 at 6:07
@JonathanLeffler it is not about that, I used this approach multiple times in my code(for example in
pipe
, and it didn't cause any problem), besides I tried to remove the testing of its return, but in that way, it does not go out of the loop.– Setareh
Nov 20 '18 at 6:23
@JonathanLeffler it is not about that, I used this approach multiple times in my code(for example in
pipe
, and it didn't cause any problem), besides I tried to remove the testing of its return, but in that way, it does not go out of the loop.– Setareh
Nov 20 '18 at 6:23
@DavidC.Rankin For this example
ls -al > output.txt
: args contain ls
and -al
– Setareh
Nov 20 '18 at 6:23
@DavidC.Rankin For this example
ls -al > output.txt
: args contain ls
and -al
– Setareh
Nov 20 '18 at 6:23
add a comment |
2 Answers
2
active
oldest
votes
execvp requires a NULL as the last paramter. I am guessing your command synthesis ignores that, the rest works as intended.
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
#include<fcntl.h>
#include<signal.h>
#include<sys/wait.h>
void print_child_status (int status) {
if (WIFEXITED (status)) {
fprintf (stdout, "Child exited with status %dn", WEXITSTATUS (status));
} else if (WIFSTOPPED (status)) {
fprintf (stdout, "Child stopped by signal %d (%s)n", WSTOPSIG (status), strsignal (WSTOPSIG (status)));
} else if (WIFSIGNALED (status)) {
fprintf (stdout, "Child killed by signal %d (%s)n", WTERMSIG (status), strsignal (WTERMSIG (status)));
} else {
fprintf (stdout, "Unknown child statusn");
}
}
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return -1;
}
else if(pid == 0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1) {
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY);
printf("Input redirection %dn", fileDescriptor);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
err = execvp(args[0], args);
if (err){
printf("err %dn", err);
}
return err;
} else {
int status;
waitpid(pid, &status,0);
print_child_status(status);
}
return 0;
}
int main() {
char * args = {"ls", "-l", NULL};
io_redirection(args, NULL, "out.txt", 0);
char * args1 = {"grep", "main", NULL};
io_redirection(args1, "./test.c", NULL, 1);
return 0;
}
It worked. Thank you ooh, what a big mistake.
– Setareh
Nov 20 '18 at 6:40
But still it does not work for the input redirection
– Setareh
Nov 20 '18 at 6:42
1
It works for me, check the status of open(), you could be referring a file that does not exist.
– Luv
Nov 20 '18 at 6:43
add a comment |
Maybe your test wrong, I use the following code
test is right.
int main() {
char* argv = {"ls", "-al", NULL};
io_redirection(argv, NULL, "test", 0);
return 0;
}
Yeah, it was my mistake, I fixed that. It works for output redirection, but it does not for the input one
– Setareh
Nov 20 '18 at 6:43
Make sure the input file exists and has sufficient permissions to open it , and how do you test it? @Setareh
– Yunbin Liu
Nov 20 '18 at 6:48
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%2f53386652%2finput-and-output-redirection-in-shell%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
execvp requires a NULL as the last paramter. I am guessing your command synthesis ignores that, the rest works as intended.
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
#include<fcntl.h>
#include<signal.h>
#include<sys/wait.h>
void print_child_status (int status) {
if (WIFEXITED (status)) {
fprintf (stdout, "Child exited with status %dn", WEXITSTATUS (status));
} else if (WIFSTOPPED (status)) {
fprintf (stdout, "Child stopped by signal %d (%s)n", WSTOPSIG (status), strsignal (WSTOPSIG (status)));
} else if (WIFSIGNALED (status)) {
fprintf (stdout, "Child killed by signal %d (%s)n", WTERMSIG (status), strsignal (WTERMSIG (status)));
} else {
fprintf (stdout, "Unknown child statusn");
}
}
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return -1;
}
else if(pid == 0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1) {
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY);
printf("Input redirection %dn", fileDescriptor);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
err = execvp(args[0], args);
if (err){
printf("err %dn", err);
}
return err;
} else {
int status;
waitpid(pid, &status,0);
print_child_status(status);
}
return 0;
}
int main() {
char * args = {"ls", "-l", NULL};
io_redirection(args, NULL, "out.txt", 0);
char * args1 = {"grep", "main", NULL};
io_redirection(args1, "./test.c", NULL, 1);
return 0;
}
It worked. Thank you ooh, what a big mistake.
– Setareh
Nov 20 '18 at 6:40
But still it does not work for the input redirection
– Setareh
Nov 20 '18 at 6:42
1
It works for me, check the status of open(), you could be referring a file that does not exist.
– Luv
Nov 20 '18 at 6:43
add a comment |
execvp requires a NULL as the last paramter. I am guessing your command synthesis ignores that, the rest works as intended.
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
#include<fcntl.h>
#include<signal.h>
#include<sys/wait.h>
void print_child_status (int status) {
if (WIFEXITED (status)) {
fprintf (stdout, "Child exited with status %dn", WEXITSTATUS (status));
} else if (WIFSTOPPED (status)) {
fprintf (stdout, "Child stopped by signal %d (%s)n", WSTOPSIG (status), strsignal (WSTOPSIG (status)));
} else if (WIFSIGNALED (status)) {
fprintf (stdout, "Child killed by signal %d (%s)n", WTERMSIG (status), strsignal (WTERMSIG (status)));
} else {
fprintf (stdout, "Unknown child statusn");
}
}
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return -1;
}
else if(pid == 0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1) {
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY);
printf("Input redirection %dn", fileDescriptor);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
err = execvp(args[0], args);
if (err){
printf("err %dn", err);
}
return err;
} else {
int status;
waitpid(pid, &status,0);
print_child_status(status);
}
return 0;
}
int main() {
char * args = {"ls", "-l", NULL};
io_redirection(args, NULL, "out.txt", 0);
char * args1 = {"grep", "main", NULL};
io_redirection(args1, "./test.c", NULL, 1);
return 0;
}
It worked. Thank you ooh, what a big mistake.
– Setareh
Nov 20 '18 at 6:40
But still it does not work for the input redirection
– Setareh
Nov 20 '18 at 6:42
1
It works for me, check the status of open(), you could be referring a file that does not exist.
– Luv
Nov 20 '18 at 6:43
add a comment |
execvp requires a NULL as the last paramter. I am guessing your command synthesis ignores that, the rest works as intended.
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
#include<fcntl.h>
#include<signal.h>
#include<sys/wait.h>
void print_child_status (int status) {
if (WIFEXITED (status)) {
fprintf (stdout, "Child exited with status %dn", WEXITSTATUS (status));
} else if (WIFSTOPPED (status)) {
fprintf (stdout, "Child stopped by signal %d (%s)n", WSTOPSIG (status), strsignal (WSTOPSIG (status)));
} else if (WIFSIGNALED (status)) {
fprintf (stdout, "Child killed by signal %d (%s)n", WTERMSIG (status), strsignal (WTERMSIG (status)));
} else {
fprintf (stdout, "Unknown child statusn");
}
}
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return -1;
}
else if(pid == 0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1) {
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY);
printf("Input redirection %dn", fileDescriptor);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
err = execvp(args[0], args);
if (err){
printf("err %dn", err);
}
return err;
} else {
int status;
waitpid(pid, &status,0);
print_child_status(status);
}
return 0;
}
int main() {
char * args = {"ls", "-l", NULL};
io_redirection(args, NULL, "out.txt", 0);
char * args1 = {"grep", "main", NULL};
io_redirection(args1, "./test.c", NULL, 1);
return 0;
}
execvp requires a NULL as the last paramter. I am guessing your command synthesis ignores that, the rest works as intended.
#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
#include<fcntl.h>
#include<signal.h>
#include<sys/wait.h>
void print_child_status (int status) {
if (WIFEXITED (status)) {
fprintf (stdout, "Child exited with status %dn", WEXITSTATUS (status));
} else if (WIFSTOPPED (status)) {
fprintf (stdout, "Child stopped by signal %d (%s)n", WSTOPSIG (status), strsignal (WSTOPSIG (status)));
} else if (WIFSIGNALED (status)) {
fprintf (stdout, "Child killed by signal %d (%s)n", WTERMSIG (status), strsignal (WTERMSIG (status)));
} else {
fprintf (stdout, "Unknown child statusn");
}
}
int io_redirection(char * args, char* inputFile, char* outputFile, int option){
int err = -1;
int fileDescriptor = -1; // between 0 and 19
pid_t pid = -10;
pid = fork();
if(pid==-1){
printf("Child process could not be createdn");
return -1;
}
else if(pid == 0){
// Option 0: output redirection
if (option == 0){
// I also tried fileDescriptor = creat(outputFile, 0644);
fileDescriptor = open(outputFile, O_CREAT | O_TRUNC | O_WRONLY, 0600);
dup2(fileDescriptor, STDOUT_FILENO);
close(fileDescriptor);
}
else if (option == 1) {
// Option 1: input redirection
fileDescriptor = open(inputFile, O_RDONLY);
printf("Input redirection %dn", fileDescriptor);
dup2(fileDescriptor, STDIN_FILENO);
close(fileDescriptor);
}
err = execvp(args[0], args);
if (err){
printf("err %dn", err);
}
return err;
} else {
int status;
waitpid(pid, &status,0);
print_child_status(status);
}
return 0;
}
int main() {
char * args = {"ls", "-l", NULL};
io_redirection(args, NULL, "out.txt", 0);
char * args1 = {"grep", "main", NULL};
io_redirection(args1, "./test.c", NULL, 1);
return 0;
}
answered Nov 20 '18 at 6:26


LuvLuv
1556
1556
It worked. Thank you ooh, what a big mistake.
– Setareh
Nov 20 '18 at 6:40
But still it does not work for the input redirection
– Setareh
Nov 20 '18 at 6:42
1
It works for me, check the status of open(), you could be referring a file that does not exist.
– Luv
Nov 20 '18 at 6:43
add a comment |
It worked. Thank you ooh, what a big mistake.
– Setareh
Nov 20 '18 at 6:40
But still it does not work for the input redirection
– Setareh
Nov 20 '18 at 6:42
1
It works for me, check the status of open(), you could be referring a file that does not exist.
– Luv
Nov 20 '18 at 6:43
It worked. Thank you ooh, what a big mistake.
– Setareh
Nov 20 '18 at 6:40
It worked. Thank you ooh, what a big mistake.
– Setareh
Nov 20 '18 at 6:40
But still it does not work for the input redirection
– Setareh
Nov 20 '18 at 6:42
But still it does not work for the input redirection
– Setareh
Nov 20 '18 at 6:42
1
1
It works for me, check the status of open(), you could be referring a file that does not exist.
– Luv
Nov 20 '18 at 6:43
It works for me, check the status of open(), you could be referring a file that does not exist.
– Luv
Nov 20 '18 at 6:43
add a comment |
Maybe your test wrong, I use the following code
test is right.
int main() {
char* argv = {"ls", "-al", NULL};
io_redirection(argv, NULL, "test", 0);
return 0;
}
Yeah, it was my mistake, I fixed that. It works for output redirection, but it does not for the input one
– Setareh
Nov 20 '18 at 6:43
Make sure the input file exists and has sufficient permissions to open it , and how do you test it? @Setareh
– Yunbin Liu
Nov 20 '18 at 6:48
add a comment |
Maybe your test wrong, I use the following code
test is right.
int main() {
char* argv = {"ls", "-al", NULL};
io_redirection(argv, NULL, "test", 0);
return 0;
}
Yeah, it was my mistake, I fixed that. It works for output redirection, but it does not for the input one
– Setareh
Nov 20 '18 at 6:43
Make sure the input file exists and has sufficient permissions to open it , and how do you test it? @Setareh
– Yunbin Liu
Nov 20 '18 at 6:48
add a comment |
Maybe your test wrong, I use the following code
test is right.
int main() {
char* argv = {"ls", "-al", NULL};
io_redirection(argv, NULL, "test", 0);
return 0;
}
Maybe your test wrong, I use the following code
test is right.
int main() {
char* argv = {"ls", "-al", NULL};
io_redirection(argv, NULL, "test", 0);
return 0;
}
answered Nov 20 '18 at 6:32
Yunbin LiuYunbin Liu
1,162313
1,162313
Yeah, it was my mistake, I fixed that. It works for output redirection, but it does not for the input one
– Setareh
Nov 20 '18 at 6:43
Make sure the input file exists and has sufficient permissions to open it , and how do you test it? @Setareh
– Yunbin Liu
Nov 20 '18 at 6:48
add a comment |
Yeah, it was my mistake, I fixed that. It works for output redirection, but it does not for the input one
– Setareh
Nov 20 '18 at 6:43
Make sure the input file exists and has sufficient permissions to open it , and how do you test it? @Setareh
– Yunbin Liu
Nov 20 '18 at 6:48
Yeah, it was my mistake, I fixed that. It works for output redirection, but it does not for the input one
– Setareh
Nov 20 '18 at 6:43
Yeah, it was my mistake, I fixed that. It works for output redirection, but it does not for the input one
– Setareh
Nov 20 '18 at 6:43
Make sure the input file exists and has sufficient permissions to open it , and how do you test it? @Setareh
– Yunbin Liu
Nov 20 '18 at 6:48
Make sure the input file exists and has sufficient permissions to open it , and how do you test it? @Setareh
– Yunbin Liu
Nov 20 '18 at 6:48
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%2f53386652%2finput-and-output-redirection-in-shell%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
You don't need to test the return value from
execvp()
— if it returns, it failed; if it succeeds, it doesn't return. You don't seem to have allowed forsort < input.txt > output.txt
— both input and output redirection on a single command.– Jonathan Leffler
Nov 20 '18 at 6:07
Without A Minimal, Complete, and Verifiable Example (MCVE) it is hard to say what state
args
is in? Have the elements holding'<'
or'>'
and the filenames already been removed so that only additional arguments remain?– David C. Rankin
Nov 20 '18 at 6:07
@JonathanLeffler it is not about that, I used this approach multiple times in my code(for example in
pipe
, and it didn't cause any problem), besides I tried to remove the testing of its return, but in that way, it does not go out of the loop.– Setareh
Nov 20 '18 at 6:23
@DavidC.Rankin For this example
ls -al > output.txt
: args containls
and-al
– Setareh
Nov 20 '18 at 6:23