On Wed, Jan 25, 2017 at 10:03 AM bruce <badouglas@xxxxxxxxx> 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@xxxxxxxxxxxxxxxxxxxxxxx
To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx
_______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx