trunkless/dustbin/ingest_gutenberg.sh
2024-08-18 21:46:47 -05:00

12 lines
195 B
Bash
Executable File

#!/bin/bash
p="/home/vilmibm/pg_plaintext/files/"
while read book; do
title=`cat $p$book | guttitle.sh`
cat $p$book \
| gutcontent \
| phraser \
| gutingest "$book $title"
done