Files
linux-packaging-mono/external/bockbuild/packages/patches/find-unused-patches.sh

4 lines
144 B
Bash
Raw Normal View History

#!/bin/sh
for f in *.patch; do grep $f ../*.py > /dev/null || echo $f; done
for f in */*.patch; do grep $f ../*.py > /dev/null || echo $f; done