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.
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.