#!/bin/csh -f
#
# PDBLS - list the contents of a PDB file
#
set Root = `echo $SCHEME`

if ($#argv != 1) then
   echo ""
   echo "Usage: pdbls <pdb-file>"
   echo ""
   exit(0)
endif

sx -l $Root/sxview.scm \(pdbls $1\)

exit($status)
