Re: bash/regex question..

2016-09-12 Thread cs
On 12Sep2016 19:37, bruce wrote: Simple question. Got a basic string.. http://venturacollege.bncollege.com/webapp/wcs/stores/servlet/BNCBHomePage?storeId=78236=78236=-1002=10001=http:BNCBMultiCampusPageCmd trying to get the internal sub-string "78236" I can remove the

Re: bash/regex question..

2016-09-12 Thread Christopher
On Mon, Sep 12, 2016 at 7:38 PM bruce wrote: > Hey. > > Simple question. > > Got a basic string.. > > http://venturacollege.bncollege.com/webapp/wcs/stores/servlet/BNCBHomePage?storeId=78236=78236=-1002=10001=http:BNCBMultiCampusPageCmd > > trying to get the internal

Re: bash/regex question..

2016-09-12 Thread Clifford Snow
On Mon, Sep 12, 2016 at 4:37 PM, bruce wrote: > 's/.*storeId=\(.*\).&/\1/' simple solution sed -e 's/.*storeId=\(.*\).&/\1/' -e 's/\&.*//' Clifford -- @osm_seattle osm_seattle.snowandsnow.us OpenStreetMap: Maps with a human touch -- users mailing list

bash/regex question..

2016-09-12 Thread bruce
Hey. Simple question. Got a basic string.. http://venturacollege.bncollege.com/webapp/wcs/stores/servlet/BNCBHomePage?storeId=78236=78236=-1002=10001=http:BNCBMultiCampusPageCmd trying to get the internal sub-string "78236" I can remove the beginning portion, but can't figureout the rest of

Re: driver nvidia f24

2016-09-12 Thread François Patte
Le 12/09/2016 18:10, Patrick O'Callaghan a écrit : > On Mon, 2016-09-12 at 16:50 +0200, François Patte wrote: >> I try to install nvidia proprietary drivers on a fresh f24 install. >> >> I tried this: http://rpmfusion.org/Howto/nVidia >> failed > > That worked for me. Just saying it failed with

Re: Google Chrome always asking me to enter the password to unlock my login keyring

2016-09-12 Thread Paul Smith
On Mon, Sep 12, 2016 at 2:13 PM, Ahmad Samir wrote: >>> If by autologin you mean that my computer automatically login the >>> default user after bootup, no, I do not have autologin enabled. >> >> Is the login keyring password the same as your user account

Re: OT: what does this expression mean?

2016-09-12 Thread Christopher
On Mon, Sep 12, 2016 at 3:24 PM Mike Wright wrote: > Hi all, > > This one's not in my unix nutshell book :/ > > Extracting the sound from some music videos (mp4's) into mp3's: > >for f in "$(ls *.mp4)"; do > ffmpeg -i "$f" -c:a libmp3lame "${f%.mp4}.mp3"; >

Re: OT: what does this expression mean?

2016-09-12 Thread Anthony Joseph Messina
On Monday, September 12, 2016 12:22:48 PM CDT Mike Wright wrote: >for f in "$(ls *.mp4)"; do > ffmpeg -i "$f" -c:a libmp3lame "${f%.mp4}.mp3"; >done You shouldn't need ls... for f in *.mp4; do ffmpeg -i "$f" -c:a libmp3lame "${f%.mp4}.mp3"; done should do the trick. -A --

Re: OT: what does this expression mean?

2016-09-12 Thread Ahmad Samir
On 12 September 2016 at 21:22, Mike Wright wrote: > Hi all, > > This one's not in my unix nutshell book :/ > > Extracting the sound from some music videos (mp4's) into mp3's: > > for f in "$(ls *.mp4)"; do > ffmpeg -i "$f" -c:a libmp3lame "${f%.mp4}.mp3"; >

Re: OT: what does this expression mean?

2016-09-12 Thread Roman Vyacheslavovich
Hi http://tldp.org/LDP/abs/html/parameter-substitution.html В Пн, 12/09/2016 в 12:22 -0700, Mike Wright пишет: > Hi all, > > This one's not in my unix nutshell book :/ > > Extracting the sound from some music videos (mp4's) into mp3's: > >    for f in "$(ls *.mp4)"; do >  ffmpeg -i "$f"

OT: what does this expression mean?

2016-09-12 Thread Mike Wright
Hi all, This one's not in my unix nutshell book :/ Extracting the sound from some music videos (mp4's) into mp3's: for f in "$(ls *.mp4)"; do ffmpeg -i "$f" -c:a libmp3lame "${f%.mp4}.mp3"; done I'm not familiar with this notation: ${f%.mp4}, where $f is the name of an mp4, e.g. "my

Re: kernel 4.7.2 update broke bind

2016-09-12 Thread Rick Stevens
On 09/10/2016 08:09 AM, Sam Varshavchik wrote: > Sam Varshavchik writes: > >> Tom Horsley writes: >> >>> On Sat, 10 Sep 2016 10:20:57 -0400 >>> Sam Varshavchik wrote: >>> >>> > All-righty, this must be something about this particular named-chroot >>> > configuration… >>> >>> In the "check the

Re: (solved) Asus RT-N66U/Tomato-Shibby -

2016-09-12 Thread Rick Stevens
On 09/10/2016 05:21 AM, geo.inbox.ignored wrote: > > > On 09/10/2016 03:23 AM, Bob Goodwin wrote: >> On 09/09/16 22:37, geo.inbox.ignored wrote: >>> CURRENT DEVELOPERS MAY BE FOUND ON THE ORIGINAL TOMATO SITE AT >>> LINKSYSINFO.ORG. PLEASE POST YOUR QUESTIONS THERE.** >>> >>> PLEASE NOTE THAT

Re: driver nvidia f24

2016-09-12 Thread José María Terry Jiménez
El 12/9/16 a las 16:50, François Patte escribió: Bonjour, I try to install nvidia proprietary drivers on a fresh f24 install. I tried this: http://rpmfusion.org/Howto/nVidia failed this: http://doc.fedora-fr.org/wiki/Carte_graphique_NVIDIA_:_installation_des_pilotes failed All these seem to

Re: driver nvidia f24

2016-09-12 Thread Patrick O'Callaghan
On Mon, 2016-09-12 at 16:50 +0200, François Patte wrote: > I try to install nvidia proprietary drivers on a fresh f24 install. > > I tried this: http://rpmfusion.org/Howto/nVidia > failed That worked for me. Just saying it failed with no other information is not a good way to ask for help. poc

driver nvidia f24

2016-09-12 Thread François Patte
Bonjour, I try to install nvidia proprietary drivers on a fresh f24 install. I tried this: http://rpmfusion.org/Howto/nVidia failed this: http://doc.fedora-fr.org/wiki/Carte_graphique_NVIDIA_:_installation_des_pilotes failed All these seem to be incomplete Where can I find a correct guide

Re: Google Chrome always asking me to enter the password to unlock my login keyring

2016-09-12 Thread Ahmad Samir
On 12 September 2016 at 00:11, Paul Smith wrote: > On Sun, Sep 11, 2016 at 6:09 PM, Ahmad Samir wrote: >> If by autologin you mean that my computer automatically login the >> default user after bootup, no, I do not have autologin enabled. >

[389-users] Re: 389DS v1.3.4.x after fixes for tickets 48766 and 48954

2016-09-12 Thread Ivanov Andrey (M.)
> De: "Ludwig Krispenz" > À: 389-users@lists.fedoraproject.org > Envoyé: Vendredi 9 Septembre 2016 12:30:31 > Objet: [389-users] Re: 389DS v1.3.4.x after fixes for tickets 48766 and 48954 > Hi Andrey, > we have fix to address the incorrcet positioning in the changelog