Re: [PATCH blktests v2 3/6] common/rc: ensure modules are loadable in _have_modules()
From: Bart Van Assche <bvanassche@acm.org>
Date: 2022-08-18 20:11:43
From: Bart Van Assche <bvanassche@acm.org>
Date: 2022-08-18 20:11:43
On 8/17/22 18:26, Shin'ichiro Kawasaki wrote:
+ count=$(find "$libpath" -name "$ko_underscore" -or \ + -name "$ko_hyphen" | wc -l)
Do all Linux find executables support -or? It's probably safer to use -o instead of -or. Thanks, Bart.