#!/bin/sh # vscroll22 # define shape specification for file do echo 80 -- 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 echo 22 -- rows per screen >> /tmp/$$.tmp # define the prompt string to continue echo " < return >">> /tmp/$$.tmp echo "$file" >> /tmp/$$.tmp cat /tmp/$$.tmp - | $bin_vhdl_tools/vhdl_scroll_set_style.e echo " " done rm /tmp/$$.tmp