<div class="gmail_quote">On Sun, Feb 8, 2009 at 10:02 AM, Chris Geldenhuis <span dir="ltr"><<a href="mailto:chris.gelden@iafrica.com">chris.gelden@iafrica.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Matt Shields wrote:<br>
> On Sun, Feb 8, 2009 at 9:52 AM, Chris Geldenhuis<br>
> <<a href="mailto:chris.gelden@iafrica.com">chris.gelden@iafrica.com</a> <mailto:<a href="mailto:chris.gelden@iafrica.com">chris.gelden@iafrica.com</a>>> wrote:<br>
><br>
>     Mad Unix wrote:<br>
>     > I have to run multiple  command about 20x on linux each one got his<br>
>     > own output, I want to bind all the out puts of them in one file then<br>
>     > read this file and mail it to user account<br>
>     ><br>
>     > sample<br>
>     ><br>
>     > [root@imail pons]# /home/pons/tsmmonitor stgpool SDC-STAFF<br>
>     > stgpool - utilization of storage pool SDC-STAFF 62%, OK<br>
>     > [root@imail pons]# /home/pons/tsmmonitor stgpool ISO-BACKUP-POOL<br>
>     > stgpool - utilization of storage pool ISO-BACKUP-POOL 41%, OK<br>
>     > [root@imail pons]# /home/pons/tsmmonitor stgpool ORACLE-DUMP-POOL<br>
>     > stgpool - utilization of storage pool ORACLE-DUMP-POOL 62%, OK<br>
>     > [root@imail pons]# /home/pons/tsmmonitor stgpool ORACLE-DUMP-POOL<br>
>     > stgpool - utilization of storage pool ORACLE-DUMP-POOL 62%, OK<br>
>     ><br>
>     > I want all these out puts be bind it in one file<br>
>     ><br>
>     > myfile:<br>
>     ><br>
>     > stgpool - utilization of storage pool SDC-STAFF 62%, OK<br>
>     > stgpool - utilization of storage pool ISO-BACKUP-POOL 41%, OK<br>
>     > stgpool - utilization of storage pool ORACLE-DUMP-POOL 62%, OK<br>
>     > stgpool - utilization of storage pool ORACLE-DUMP-POOL 62%, OK<br>
>     ><br>
>     > then to read this file and send it to email address<br>
>     ><br>
>     > Thanks<br>
>     > _______________________________________________<br>
>     > CentOS mailing list<br>
>     > <a href="mailto:CentOS@centos.org">CentOS@centos.org</a> <mailto:<a href="mailto:CentOS@centos.org">CentOS@centos.org</a>><br>
>     > <a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
>     ><br>
>     ><br>
>     Hi,<br>
><br>
>     Do this by re-directing the output from your commands into a file<br>
>     like this:<br>
><br>
>     [root@imail pons]# /home/pons/tsmmonitor stgpool SDC-STAFF > outfile<br>
><br>
>     [root@imail pons]# /home/pons/tsmmonitor stgpool ISO-BACKUP-POOL<br>
>     >> outfile<br>
><br>
>     [root@imail pons]# /home/pons/tsmmonitor stgpool ORACLE-DUMP-POOL<br>
>     >>outfile<br>
><br>
>     [root@imail pons]# /home/pons/tsmmonitor stgpool ORACLE-DUMP-POOL<br>
>     >>outfile<br>
><br>
>     Note that the single ">" in the first line will create a new "outfile"<br>
>     that is it will create the file if it does not exist or over-write<br>
>     it if<br>
>     it does exist.<br>
><br>
>     The double ">>" in the following commands will append the output of<br>
>     those commands to the already existing "outfile".<br>
><br>
>     ChrisG<br>
><br>
><br>
> Actually ">>" will also create the file if it doesn't exit.  Try it :)<br>
><br>
> -matt<br>
> <a href="http://www.sysadminvalley.com" target="_blank">http://www.sysadminvalley.com</a><br>
> <a href="http://www.beantownhost.com" target="_blank">http://www.beantownhost.com</a><br>
> <a href="http://www.linkedin.com/in/mattboston" target="_blank">http://www.linkedin.com/in/mattboston</a><br>
> Joe E. Lewis  - "I distrust camels, and anyone else who can go a week<br>
> without a drink."<br>
><br>
> ------------------------------------------------------------------------<br>
><br>
> _______________________________________________<br>
> CentOS mailing list<br>
> <a href="mailto:CentOS@centos.org">CentOS@centos.org</a><br>
> <a href="http://lists.centos.org/mailman/listinfo/centos" target="_blank">http://lists.centos.org/mailman/listinfo/centos</a><br>
><br>
Hi Matt,<br>
<br>
I know that, but if you use >> and there is some file there with that<br>
name already the data will be appended to it instead of starting a new<br>
file with the output of your current session only.<br>
<br>
ChrisG<br>
</blockquote><div><br>For some that might be what they want.  :)<br><br><br clear="all">-matt<br><a href="http://www.sysadminvalley.com">http://www.sysadminvalley.com</a><br><a href="http://www.beantownhost.com">http://www.beantownhost.com</a><br>
<a href="http://www.linkedin.com/in/mattboston">http://www.linkedin.com/in/mattboston</a><br>Charles M. Schulz  - "I love mankind; it's people I can't stand."
<br> </div></div>