bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Segfault in Bash


From: Ilkka Virta
Subject: Re: Segfault in Bash
Date: Tue, 14 Jul 2020 18:55:14 +0300
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:68.0) Gecko/20100101 Thunderbird/68.10.0

On 14.7. 13:32, Jeffrey Walton wrote:
Hi Everyone,

I'm working on a script to find all shared objects in a directory. A
filename should match the RE '*.so$'. I thought I would pipe it to
grep:

IFS="" find "$dir" -name '*.so' -print | while read -r file
do
     if ! $(echo "$file" | grep -E "*.so$"); then continue; fi
     echo "library: $file"

done

Are you trying to find the .so files, or run them for some tests? Because it looks to me that you're running whatever that command substitution outputs, and not all dynamic libraries are made for that.


--
Ilkka Virta / itvirta@iki.fi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]