mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
13 lines
232 B
Text
Executable file
13 lines
232 B
Text
Executable file
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
|