Re: execline and $0-based stuff

From: Guillaume Perréal <gperreal_at_free.fr>
Date: Wed, 22 Feb 2017 11:09:21 +0100

I also discovered that the "expr" command from busybox have some regexp
support, e.g :

     expr 'match' '/some/path/getty-tty1/run' '.*/getty-\([^/]*\)/run'

Exits with 0 and prints "tty1".

While this doesn't print anything and exits with 1 :

     expr 'match' '/some/path/not-a-tty/run' '.*/getty-\([^/]*\)/run'

I have two other questions but I'll start proper mail threads.

-- 
Guillaume.
Le 22/02/2017 à 03:03, Casper Ti. Vector a écrit :
> An example of my attempt, already working on at least 2 Alpine machines:
>
>> $ ls -d /etc/s6-rc/main/*getty*
>> /etc/s6-rc/main/getty.tty1
>> $ cat /etc/s6-rc/base/getty/run
>> #!/bin/rc -e
>> exec >[2=1]
>> . /etc/s6-rc/bin/fn.rc
>> exec `{cdr $self} 38400 $name linux
>> $ cat /etc/s6-rc/bin/fn.rc
>> #!/bin/rc
>> fn car { echo $1 | sed 's/^.*\.//' }
>> fn cdr { echo $1 | sed 's/\.[^.]*$//' }
>> # ... [code used in other templates] ...
>> self=`{basename `{pwd}}
>> if (~ $self *.log) {
>>      logd=/var/log/`{cdr $self}
>> } else name=`{car $self}
>> # ... [code used in other templates] ...
> On Sat, Feb 18, 2017 at 01:46:20PM +0100, gperreal_at_free.fr wrote:
>> extract a part of the path of the executed script ($0) in a variable
Received on Wed Feb 22 2017 - 10:09:21 UTC

This archive was generated by hypermail 2.3.0 : Sun May 09 2021 - 19:38:49 UTC