On Wed, Jan 25, 2017 at 10:03 AM bruce <badouglas@gmail.com> wrote:
morn/quick question...

say you have
aa.aa
aaa.aa

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

this doesn't work, gets a redirection error

I know one can write a quick bash/shell loop.. any other ways?
Avoid unnecessary copies:

  echo 'b' > a
  for f in b c d f ; do ln a $f ; done



thanks
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-leave@lists.fedoraproject.org