trunkless/ingest.sh
2024-02-08 21:14:35 -08:00

9 lines
177 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