著者: aitor 日付: To: dng 題目: Re: [DNG] vdev status update in daedalus
Hi,
On 9/12/23 11:32, aitor wrote: > On 9/12/23 11:10, Ludovic Bellière via Dng wrote:
>> The asterix means 0 or more. If you need to match 'd', then you want to use + (1 or more):
>> echo "sdf" | grep -E 'fd+'
>> You'll want to change all asterix, probably. I case of doubt, you may want to consulthttps://regex101.com.
> Thanks for the info, Ludovic!