24 Mar
2018
24 Mar
'18
5:43 p.m.
On 24 March 2018 at 18:36, luigi scarso
On Sat, Mar 24, 2018 at 5:51 PM, Mojca Miklavec wrote:
I reverted the change for now until someone can come up with a working command. can you send me offlist the relevant *lua *sh script ? I cannot reproduce the error now with linux/zsh.
echo "Henri's test:" if command -v ldd >/dev/null && ldd --version 2>&1 | grep -q ^musl then echo "This is musl" else echo "This is libc" fi # not sure about the exact form echo "Arthur's test:" if command -v ldd --version 2>&1 | fgrep -q '^musl' then echo "This is musl" else echo "This is libc" fi Mojca