#!/bin/sh
# \
	exec itkwish -f "$0" ${1+"$@"} 

#
# Demo script for the Scrolledtext class
#
option add *textBackground white

scrolledtext .st -labeltext "passwd" -wrap none

pack .st -padx 10 -pady 10 -fill both -expand yes

.st import /etc/passwd

.st yview 0
