mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-28 14:24:09 +01:00
14 lines
232 B
Plaintext
Executable File
14 lines
232 B
Plaintext
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
|