lib/scripts/ucat
author wenzelm
Mon, 09 Dec 1996 16:40:22 +0100
changeset 2347 a42c1b835fb3
parent 2307 508d2a233dbc
child 2579 4af1023fc6bf
permissions -rwxr-xr-x
added -norc option;

#!/bin/bash -norc
#
# $Id$
#
# ucat - uninterruptible cat.
#
# NOTE: If perl is unavailable we simply fall back on normal cat!


PERL=$(type -path perl)

if [ -z "$PERL" ]
then
  exec cat "$@"
else
  exec $PERL -e '$SIG{INT} = "IGNORE"; $| = 1; while (<ARGV>) {print;}' "$@"
fi