#!/bin/bash # # For a given set of release names, display all of the issues that need # some actual work - i.e., contain non status info, or are marked needed # # Example usage: ./filter-active ../active 2.6.8-sarge-security linux-2.6 # set -e if [ $# -lt 2 ]; then echo "Usage: filter-active [...]" exit 1 fi tdir=$1 shift rel="$*" exec "$(dirname "$0")/filter-active.py" -d "$tdir" -r ${rel// / -r } -n{N/A,pending,released,ignored}