Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I make few commands to parse values from free -m and now need to output all in one file. It looks like this:

free -m | grep 'Mem' | awk '{print $3'} && free -m | grep 'Mem' | awk '{print $6'} && free -m | grep 'Mem' | awk '{print $7'} && free -m | grep 'cache:' | awk '{print $3'}

if I add > /some/file on end, it write only last value, how to write output from all this commands to one file? thanks for any help

share|improve this question
2  
You can use several expressions for awk: E.g. $ free -m | grep 'Mem' | awk '{print $3}{print $6}' Or even $ free -m | grep 'Mem' | awk '{print $3"\n"$6}' – Necto Nov 23 '12 at 10:11

1 Answer

up vote 4 down vote accepted

Add parentheses to open a sub shell:

( free -m | grep 'Mem' | awk '{print $3'} && free -m | grep 'Mem' | awk '{print $6'} && free -m | grep 'Mem' | awk '{print $7'} && free -m | grep 'cache:' | awk '{print $3'} ) > result.txt
share|improve this answer
1  
No need for a subshell. { free -m ... | awk '{print $3'}; } > result.txt works just fine. (There's no significant difference, of course: just pointing out an alternative.) – William Pursell Nov 23 '12 at 18:19
Thanks - did not know that yet :) One subtle difference is, though, that the subshell approach also works with tcsh, while I get a {: Command not found. with your approach. I personally prefer bash, but it's not been clear from the question which shell the OP uses ... – Andreas Nov 23 '12 at 20:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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