#!/bin/sh -efu while IFS=$'\t' read -r f t; do if [ -z "${f##${RPM_BUILD_ROOT-}/usr/lib*/node_modules/*}" ]; then case $f in *.node) echo "$f" ;; esac fi done