Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#! /bin/sh
#
#	$NetBSD: prsynops,v 1.2 1998/01/09 08:05:12 perry Exp $
#
set x $*
. ./.param

for dir in $DIRLST
do
	date > $TMPDIR/synops$dir
	echo >> $TMPDIR/synops$dir
	cd $MANDIR/man$dir
	for file in $FILLST
	do
		so=`line < $file | sed "s/ .*//"`
		if test "$so" = ".so"
		then
			continue
		fi
		nroff -man $file > $TMPDIR/tmp.$$
		echo "$file:" >> $TMPDIR/synops$dir
		ed - $TMPDIR/tmp.$$ >> $TMPDIR/synops$dir <<!
			/SYNOPSIS/;+,/^     [A-Z][A-Z][A-Z][A-Z]/-p
			q
!
	done
done

rm -f $TMPDIR/tmp.$$