I'm using linux. Let's say I have a program named add. The program takes two numbers.

so if I type in

add 1 2

the answer is 3 //obvious

what command will make this write out to a file named add.data

I'm kind of a linux n00b. I was reading about piping. Thanks.

link|improve this question

Is this homework? – Martin v. Löwis Oct 22 '09 at 5:48
no need to ask whether its homework. someone is bound to answer whether or not it is. ;) – ghostdog74 Oct 22 '09 at 6:02
feedback

3 Answers

up vote 5 down vote accepted

Piping means sending the output of a program as input to a second, which must be able to read data from the standard input, e.g.

add 1 2 | echo

What you are asking about here is output redirection: you should use

add 1 2 > add.data

to create a new file with your output (if existing will be overwritten), and

add 1 2 >> add.data

to create a new one or append to an existing.

link|improve this answer
feedback

add 2 3 > something.txt

link|improve this answer
feedback

This will redirect output into a file, recreates the file every time

add 1 2 > add.data

This will append to the end of the file

add 1 2 >> add.data
link|improve this answer
This is redirection, not piping. – pavium Oct 22 '09 at 5:52
Typo, fixed ............. – stefanB Oct 22 '09 at 6:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.