This Text file is old! In a 🏛️Museum, an unsorted archive of (user-)pages. (Saved from Geocities in Oct-2009. The archival story: oocities.org)
--------------------------------------- (To 🚫report any bad content: archivehelp @ gmail.com)
>

#!/bin/sh

# /usr/scripts/screen_xref.script
#
# Shell script:  screen_xref.script
# 
# Author:  Kevin FitzGerrell
#
# This script uses the Foxboro Display Reporter and Connection Editor
# (d_edit50) to generate a list of connections for all screen files.
# It then extracts C:B.P references using SED script screen_xref.sed
# and reports them with associated screens.
#

/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/a12/* > /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/a21/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/a24/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/a25/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/a26/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/a31/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/interlck/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/mtr/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/overvu/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/pid/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/trend/* >> /usr/scripts/screen.tmp1
/usr/fox/wp/bin/tools/d_edit50 -l /usr/sc/vlv/* >> /usr/scripts/screen.tmp1
egrep "   /usr|^..[0-9]" /usr/scripts/screen.tmp1 > /usr/scripts/screen.tmp2
sed -f /usr/scripts/screen_xref.sed /usr/scripts/screen.tmp2 > /usr/scripts/screen.tmp3
grep : /usr/scripts/screen.tmp3 | sort -u > /usr/scripts/screen_xref.report
rm screen.tmp*

Text file Source (historic): geocities.com/fitzgerrell/dcs_stuff/raw_scripts

geocities.com/fitzgerrell/dcs_stuff
geocities.com/fitzgerrell

(to report bad content: archivehelp @ gmail)