Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
hellooooooooooz
i am trying to use the tar command,, i used to use the script i made,, but one time i checked the tape and found some file not backed, i ran the script again and did nothing, just watching the output on screen, i triedto use output redirection but i can't redirect the errors only to a log file, here what i used
tar -cvf tarfile.tar f1 f2 f3 f4 f5 2>tar.log
and i found that the file tar.log holds the same output from both stdout and the stderr,,
do u have any idea about redirecting the errors only to the log file?????
i am still having the same result even when i run the command on the prompt?, also i checked the script and found nothing redirecting the stderr to anything,,, i wish to find a solution
Scanning man tar did not give an answer, but here is a GUESS:
The substantive output of tar goes to the specified file---not to "stdout". Thus, the only thing that I would expect to go to stdout would be errors.
What happens if you explicity send stdout to one file, and stderr to another?
Which shell are you using? Could it be that you are using a (t)csh shell? Using bash/ksh the tar command given works, if I try the same with a (t)csh shell it does not work.
If you are using a (t)csh shell try the following:
( tar -cvf tarfile.tar f1 f2 f3 f4 f5 > stdout_file ) > & stderr_file
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.