mirror of
https://github.com/mrrpnya/lipu-sona.git
synced 2025-02-13 16:44:39 +00:00
21 lines
257 B
Bash
Executable file
21 lines
257 B
Bash
Executable file
#!/bin/bash
|
|
|
|
DIRECTORY="pages/text"
|
|
|
|
FILES=`ls $DIRECTORY/*.txt -1 | sort`
|
|
|
|
cat << EOF
|
|
% rnd's text files
|
|
%
|
|
%
|
|
|
|
EOF
|
|
|
|
for f in $FILES; do
|
|
|
|
OUTPAGE=${f%.txt}.html
|
|
OUTPAGE=${OUTPAGE#pages/text/}
|
|
|
|
echo " * [$f]($OUTPAGE) ([text](${OUTPAGE%.html}.txt))"
|
|
done
|
|
|