#!/bin/sh # # Here's a simple tool for filtering Ogldebug histories and grouping/counting # functions with similar parameters. # For example, searching for glEnable in a history file, will result in a # list of all like parameter glEnable calls, with numbers of each similar call # grep $1 $2 | sort | uniq -c | sort