On 25Jan2017 08:42, Ian Pilcher <[email protected]> wrote:
On 01/25/2017 08:02 AM, bruce wrote:
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

You can do it with a single tee command you know:

 echo b | tee *.aa >/dev/null

or more likely (depends on the OP's use case):

 echo b | tee -a *.aa >/dev/null

Cheers,
Cameron Simpson <[email protected]>
_______________________________________________
users mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to