mirror of
https://github.com/opnsense/src.git
synced 2026-04-01 23:45:12 -04:00
14 lines
232 B
Text
14 lines
232 B
Text
|
|
set x $*
|
||
|
|
. ./.param
|
||
|
|
|
||
|
|
date > $TMPDIR/list
|
||
|
|
echo >> $TMPDIR/list
|
||
|
|
|
||
|
|
for dir in $DIRLST
|
||
|
|
do
|
||
|
|
cd $MANDIR/man$dir
|
||
|
|
echo "cat <<'EOF' >----------" >> $TMPDIR/list
|
||
|
|
echo "Section $dir" >> $TMPDIR/list
|
||
|
|
ls -ldas .* $FILLST >> $TMPDIR/list
|
||
|
|
done
|