Re: simple echo into multiple files...

2017-01-25 Thread Roberto Ragusa
On 01/25/2017 05:23 PM, George N. White III wrote: > Avoid unnecessary copies: > > echo 'b' > a > > for f in b c d f ; do ln a $f ; done But then echo 'x' > d and have a look at c. It may not be want you want. -- Roberto Ragusamail at robertoragusa.it _

Re: simple echo into multiple files...

2017-01-25 Thread Joe Wulf
Thanks Roberto, yes, that is elegant even.:) From: Roberto Ragusa To: users@lists.fedoraproject.org Sent: Wednesday, January 25, 2017 10:10 AM Subject: Re: simple echo into multiple files... On 01/25/2017 03:42 PM, Joe Wulf wrote: > Bruce, > > #  Create two new files > echo  'b'  |

Re: simple echo into multiple files...

2017-01-25 Thread George N. White III
On Wed, Jan 25, 2017 at 10:03 AM bruce 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

Re: simple echo into multiple files...

2017-01-25 Thread Roberto Ragusa
On 01/25/2017 04:10 PM, Roberto Ragusa wrote: > On 01/25/2017 03:42 PM, Joe Wulf wrote: >> Bruce, >> >> # Create two new files >> echo 'b' | tee aa.aa aaa.aa >> > > With wildcard expansion: > > echo 'b' | tee *.aa > well, of course not when creating new files, but that would work for appe

Re: simple echo into multiple files...

2017-01-25 Thread Roberto Ragusa
On 01/25/2017 03:42 PM, Joe Wulf wrote: > Bruce, > > # Create two new files > echo 'b' | tee aa.aa aaa.aa > With wildcard expansion: echo 'b' | tee *.aa -- Roberto Ragusamail at robertoragusa.it ___ users mailing list -- users@lists.fed

Re: simple echo into multiple files...

2017-01-25 Thread Joe Wulf
Bruce, #  Create two new filesecho  'b'  |  tee  aa.aa  aaa.aa #  Append 'b' to two existing filesecho  'b'  |  tee  -a  aa.aa  aaa.aa Strongly recommend getting "Unix In A NutShell" from O'Reilly and peruse it periodically; it is an excellent reference for all such things and will make you far m

Re: simple echo into multiple files...

2017-01-25 Thread Ian Pilcher
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.

Re: simple echo into multiple files...

2017-01-25 Thread Richard Shaw
On Wed, Jan 25, 2017 at 8:02 AM, bruce wrote: > I know one can write a quick bash/shell loop.. any other ways? > for $file in *.aa; do echo 'b' > $file; done Richard ___ users mailing list -- users@lists.fedoraproject.org To unsubscribe send an em

simple echo into multiple files...

2017-01-25 Thread bruce
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? thanks ___ users mailing list -- users@lists.fed

Problem updating flatpak firefox

2017-01-25 Thread Junayeed Ahnaf
Hello, There was a problem I was facing when installing flatpak fedora so I googled and found the issue here : https://github.com/xhorak/firefox-devedition-flatpak/issues/1 Now here : https://github.com/xhorak/firefox-devedition-flatpak/issues/1#issuecomment-272406295 there is a solution to g

Re: Display setting problem with 4k monitor

2017-01-25 Thread Roberto Ragusa
On 01/25/2017 10:01 AM, Massimo Canonico wrote: > If someone has a similar problem, I suggest to read this page: > > https://wiki.archlinux.org/index.php/HiDPI > > It helps me a lot, but I'm still having problem with the monitors. > Zooming/panning make the display blurry and (as suggested in th

Re: Display setting problem with 4k monitor

2017-01-25 Thread Massimo Canonico
If someone has a similar problem, I suggest to read this page: https://wiki.archlinux.org/index.php/HiDPI It helps me a lot, but I'm still having problem with the monitors. Zooming/panning make the display blurry and (as suggested in the web page) I should try to adjust the "sharpness" paramet