[go: up one dir, main page]

Menu

[r152]: / bin / colorwarper  Maximize  Restore  History

Download this file

12 lines (9 with data), 180 Bytes

#!/usr/bin/env bash
#CTAFCONF, GPL, etc...
app="$1"

if ! which perl 2>/dev/null >/dev/null ; then
  "$@"
else
  "$@" 2>&1 | ~/.ctafconf/bin/color$app.pl
fi

exit ${PIPESTATUS[0]}