On 01/25/2017 08:02 AM, bruce wrote:
morn/quick question...

say you have
aa.aa
aaa.aa

is there a "simple" way to do
echo 'b' > *.aa

If you don't need to doing it with an arbitrary number of files, you
can do this with one or more tee(1) commands.  For example:

  echo 'b' | tee a.txt | tee b.txt > c.txt

--
========================================================================
Ian Pilcher                                         arequip...@gmail.com
-------- "I grew up before Mark Zuckerberg invented friendship" --------
========================================================================
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org

Reply via email to