#!/bin/csh -f 
#--------- tar tf : listing with | more
#   usage: tarf file.tar
#
set fn = $1

echo " "
if( "$1" == "" ) then
  echo -n " ---> tarf file.tar ---> Enter a file.tar : "
  set fn = &<
endif

tar tf "$fn" | more -ei

echo " "

### replaces
# alias tarf 'tar tf \!* | more -ei'
