12 lines
195 B
Bash
Executable File
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
|