#!/bin/csh -f
## ###################################################################### ##
##         Copyright IBM Corporation 1988,1991 - All Rights Reserved      ##
##        For full copyright information see:'andrew/config/COPYRITE'     ##
## ###################################################################### ##

set dir=$0
set dir=$dir:h
if ($dir == $0) set dir=.
echo $dir/expdeftab
foreach i ($*)
    echo Decoding binary options for $i...
    $dir/dumpbin ~$i/preferences | join - $dir/expdeftab
    echo ""
end

