Linux - Newbie This 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
08-14-2012, 11:29 PM
|
#1
|
Member
Registered: Jun 2012
Location: ghaziabad , delhi , india
Posts: 105
Rep:
|
cat f_1 > f_2 > f_3
in f_1 :: hey , hi
but after cat f_1 > f_2 > f_3
f_1 = hey , hi
f_2 has nothing , why
f_3 = hey , hi
|
|
|
08-14-2012, 11:48 PM
|
#2
|
Member
Registered: Oct 2008
Location: Rousse, Bulgaria
Distribution: Debian
Posts: 91
Rep:
|
I'm not really familiar with the input/output redirection mechanism so I can't say why the content is going into f_3 instead of f_2, but if you want to 'cat' the contents of f_1 to f_2 and f_3, you can use
Code:
cat f_1 | tee -a f_2 > f_3
tee is a command that writes (-a is for append in this case) input to the screen and into a specified file.
|
|
1 members found this post helpful.
|
08-15-2012, 04:32 AM
|
#3
|
LQ Guru
Registered: Sep 2009
Location: Perth
Distribution: Arch
Posts: 10,030
|
Think of each > as a number (as it is assigned a file descriptor). Seeing as you used the same number both times, only the final file will receive the data. This is a simple definition.
|
|
1 members found this post helpful.
|
08-15-2012, 06:51 AM
|
#4
|
Bash Guru
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Arch + Xfce
Posts: 6,852
|
You can't redirect the same output to multiple files at the same time. There's only one stdout, so there's only one place it can go. Use tee, as shown above, to duplicate the output.
I believe in the above that the shell first sets up the "> f_2" redirection, then immediately replaces it with the "> f_3" redirection, clearing the first one.
|
|
|
All times are GMT -5. The time now is 12:56 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|