#!/bin/sh # vsun for file do # define shape specification echo 94 -- column width > /tmp/$$.tmp echo 48 -- indent margin maximum >> /tmp/$$.tmp echo 3 -- tab set >> /tmp/$$.tmp echo 1 -- wrap indent length >> /tmp/$$.tmp echo 14 -- comment right adjust length >> /tmp/$$.tmp echo "-- -- comment wrap string: constraint use only the first 4 characters" >> /tmp/$$.tmp # define rows per screen echo 33 -- rows per screen >> /tmp/$$.tmp # define the prompt string to continue echo ">>" >> /tmp/$$.tmp # define file name echo "$file" >> /tmp/$$.tmp cat /tmp/$$.tmp - | $bin_vhdl_tools/vhdl_scroll_set_style.e echo " " done rm /tmp/$$.tmp