Re: delimiters with more than one character?

2020-07-16 Thread David Wright
On Thu 16 Jul 2020 at 15:27:06 (-0400), Dan Ritter wrote: > William Michels wrote: > > I've slowly been learning the Raku programming language (AKA Perl6), and > > Please don't call it that. Perl 1-5 have a clear relationship, and that > relationship continues in Perl 7 and subsequent versions.

Re: delimiters with more than one character? ...

2020-07-16 Thread Zenaan Harkness
On Thu, Jul 16, 2020 at 09:57:12AM -0400, Greg Wooledge wrote: > On Thu, Jul 16, 2020 at 03:52:01PM +0200, Thomas Schmitt wrote: > > I tried > > > > echo " 34 + 45 \| abc \| 1 2 3 \| c\|123abc " | \ > > sed -e 's/\\|/\n/g' | \ > > mapfile -t _S_AR > > > > with no visible effect on the array

Re: delimiters with more than one character? ...

2020-07-16 Thread Zenaan Harkness
On Thu, Jul 16, 2020 at 07:56:57AM -0400, Greg Wooledge wrote: > On Thu, Jul 16, 2020 at 01:30:02PM +0200, Thomas Schmitt wrote: > > Hi, > > > > Eric S Fraga wrote: > > > echo " 34 + 45 \| abc \| 1 2 3 \| c\|123abc " | sed -e 's/\\|/\n/g' > > > > I came that far too. One can wrap the result in qu

Re: delimiters with more than one character?

2020-07-16 Thread William Michels
On Thu, Jul 16, 2020 at 12:03 PM Nicolas George wrote: > > Observe your output carefully. You'll notice that the string you defined > does not actually contain any backslash. > > Regards, > > Nicolas George Thank you, Nicholas! Looks like the trick for Raku one-liners on the bash command line i

Re: Fwd: problem with GeForce GTX 1050 - Solved

2020-07-16 Thread David Bridgham
I got it.  After my previous message, I decided to chase down the thread that it doesn't work even when I'm not booting to X, thinking that might be a simpler setup and easier to debug. Once I turned "quiet" off, I saw the last message printed was: fb0: switching to nouveaufb from EFI VGA Okay,

Re: delimiters with more than one character?

2020-07-16 Thread Dan Ritter
William Michels wrote: > mailto:debian-user@lists.debian.org?in-reply-to=< > cafakbwhn7crfsov60mr9tf4vus1duv4cnqohbbdyx-awoxw...@mail.gmail.com>&subject=Re:%20Re: > delimiters with more than one character? ...">debian-user@lists.debian.org > > > I've slowly been learning the Raku programming lan

Re: delimiters with more than one character?

2020-07-16 Thread Greg Wooledge
On Thu, Jul 16, 2020 at 11:42:10AM -0700, William Michels wrote: > I've slowly been learning the Raku programming language (AKA Perl6), and > while I'm far from being an expert, this is the first solution I came up > with (raku one-or-two-liners, at the bash command prompt): > > user@mbook:~$ raku

Re: delimiters with more than one character?

2020-07-16 Thread Nicolas George
William Michels (12020-07-16): > mailto:debian-user@lists.debian.org?in-reply-to=< > cafakbwhn7crfsov60mr9tf4vus1duv4cnqohbbdyx-awoxw...@mail.gmail.com>&subject=Re:%20Re: > delimiters with more than one character? ...">debian-user@lists.debian.org > ??? > I've slowly been learning the Raku progr

Re: delimiters with more than one character?

2020-07-16 Thread William Michels
mailto:debian-user@lists.debian.org?in-reply-to=< cafakbwhn7crfsov60mr9tf4vus1duv4cnqohbbdyx-awoxw...@mail.gmail.com>&subject=Re:%20Re: delimiters with more than one character? ...">debian-user@lists.debian.org I've slowly been learning the Raku programming language (AKA Perl6), and while I'm far

Re: Using .XCompose

2020-07-16 Thread Ajith R
On Thursday 16 July 2020 5:27:16 AM IST davidson wrote: > ie, see whether there are nonbreaking spaces in the message body. > I attach ajith_msgbody_replace_nbsp.txt, which contains a '%' > character wherever a nonbreaking space was in the original. Thanks. So, the non-breaking spaces ar

Re: Using .XCompose

2020-07-16 Thread Ajith R
On Thursday 16 July 2020 4:54:09 AM IST davidson wrote: > And so you have set up known environmental conditions for subsequent > tests of that mechanism. Yes, that was my intention > which permits me to toggle my keyboard layout between two alternatives > ("us" and "ru") by striking caps

Re: Re: Fwd: problem with GeForce GTX 1050

2020-07-16 Thread David Bridgham
David Wright mailto:deblis%40lionunicorn.co.uk>> wrote: > My reaction to discovering this might be to ssh into the > computer from another one, and look at what processes are running > and which files they have open, all while logging in through the DM. Yeah, I might give that a try sometime; s

Re: Question about nvidea-driver

2020-07-16 Thread Peter Ehlert
don't know much, but from my notes: I installed, for Buster, with Synaptic: nvidia-detect nvidia-driver Now on another machine, setting up Bullseye, I get  not found! inxi says- Graphics:   Device-1: AMD Cedar [Radeon HD 5000/6000/7350/8350 Series] driver: N/A   Device-2: NVIDIA GF106GL [Qua

Re: Question about nvidea-driver

2020-07-16 Thread Stephen P. Molnar
Many thanks for the replies. I checked, and the nouveau driver has been blacklisted. On 07/16/2020 11:09 AM, Brad Rogers wrote: On Thu, 16 Jul 2020 09:18:54 -0400 "Stephen P. Molnar" wrote: Hello Stephen, system? Also, is it possible to direct the installer to use the nvidia-driver rather

Re: Question about nvidea-driver

2020-07-16 Thread Brad Rogers
On Thu, 16 Jul 2020 09:18:54 -0400 "Stephen P. Molnar" wrote: Hello Stephen, >system? Also, is it possible to direct the installer to use the >nvidia-driver rather the nouveau package. Difficult; There are multiple versions of the nvidia driver available. What you need/want to install depend

Re: delimiters with more than one character? ...

2020-07-16 Thread Greg Wooledge
On Thu, Jul 16, 2020 at 03:52:01PM +0200, Thomas Schmitt wrote: > I tried > > echo " 34 + 45 \| abc \| 1 2 3 \| c\|123abc " | \ > sed -e 's/\\|/\n/g' | \ > mapfile -t _S_AR > > with no visible effect on the array _S_AR. bash 4.3.30 and 5.0.11. You can't use a pipeline, because each command

Re: delimiters with more than one character? ...

2020-07-16 Thread Thomas Schmitt
Hi, Eric S Fraga wrote: > See the "\n" (newline) in the replacement pattern? Of course. Else there would be only one output line. Greg Wooledge wrote: > If you've got an input stream with one element per line that you want > to import into a bash array, you use the "mapfile" (or "readarray") >

Re: Question about nvidea-driver

2020-07-16 Thread Georgi Naplatanov
On 7/16/20 4:18 PM, Stephen P. Molnar wrote: > I am running Buster on my Linux Platform. > > The installer selected the xserver-xorg-videau-nouveau, libdrm-nouveau2 > and libdrm-nouveau22:i386 packages.  However, I have a GK208 [GeForce GT > 710B] (rev a1) card on the platform and have installed t

Re: XFCE4 - How to increase font size on applications?

2020-07-16 Thread Celejar
On Tue, 14 Jul 2020 17:21:24 +0100 Liam O'Toole wrote: > On Mon, 13 Jul, 2020 at 20:26:57 -0400, hobie of RMN wrote: > > Hi, Folks - > > > > I'm running Linux buster with xce4 desktop. Some applications come up > > with font size too small for me to be able to read menu texts, etc., > > notably

Question about nvidea-driver

2020-07-16 Thread Stephen P. Molnar
I am running Buster on my Linux Platform. The installer selected the xserver-xorg-videau-nouveau, libdrm-nouveau2 and libdrm-nouveau22:i386 packages. However, I have a GK208 [GeForce GT 710B] (rev a1) card on the platform and have installed the nvidia-driver package. Everything seems to work

Re: delimiters with more than one character? ...

2020-07-16 Thread Eric S Fraga
On Thursday, 16 Jul 2020 at 13:30, Thomas Schmitt wrote: > Eric S Fraga wrote: >> echo " 34 + 45 \| abc \| 1 2 3 \| c\|123abc " | sed -e 's/\\|/\n/g' > > But how to get the lines into the array ? See the "\n" (newline) in the replacement pattern? -- Eric S Fraga via Emacs 28.0.50 & org 9.3.7 on

Re: delimiters with more than one character? ...

2020-07-16 Thread Greg Wooledge
On Thu, Jul 16, 2020 at 01:30:02PM +0200, Thomas Schmitt wrote: > Hi, > > Eric S Fraga wrote: > > echo " 34 + 45 \| abc \| 1 2 3 \| c\|123abc " | sed -e 's/\\|/\n/g' > > I came that far too. One can wrap the result in quotation marks by adding > | sed -e 's/^.*$/"&"/' > > But how to get the li

Re: XFCE4 - How to increase font size on applications?

2020-07-16 Thread Liam O'Toole
On Wed, 15 Jul, 2020 at 19:01:30 -0400, hobie of RMN wrote: > > On Mon, 13 Jul, 2020 at 20:26:57 -0400, hobie of RMN wrote: > >> Hi, Folks - > >> > >> I'm running Linux buster with xce4 desktop. Some applications come up > >> with font size too small for me to be able to read menu texts, etc., > >

Re: delimiters with more than one character? ...

2020-07-16 Thread Thomas Schmitt
Hi, Eric S Fraga wrote: > echo " 34 + 45 \| abc \| 1 2 3 \| c\|123abc " | sed -e 's/\\|/\n/g' I came that far too. One can wrap the result in quotation marks by adding | sed -e 's/^.*$/"&"/' But how to get the lines into the array ? I did not find much info in man bash how to do this with reas

Re: delimiters with more than one character? ...

2020-07-16 Thread Eric S Fraga
Try sed: echo " 34 + 45 \| abc \| 1 2 3 \| c\|123abc " | sed -e 's/\\|/\n/g' HTH, eric -- Eric S Fraga via Emacs 28.0.50 & org 9.3.7 on Debian bullseye/sid