add prcd2fortune

This commit is contained in:
encrypt 2015-06-29 01:04:14 +02:00
parent c0e5944447
commit e5571d8b63

15
prcd2fortune/prcd.sh Normal file
View file

@ -0,0 +1,15 @@
#!/bin/sh
# 'njoy
tmp="/tmp/prcd/"
wget "http://www.papuasia.org/prcd/" -nd -r -np -A txt -P $tmp
for f in $tmp*
do
nf=$(echo $f | cut -d '.' -f 1)
cat $f | tr '\n' '\0' | xargs -0 -L1 -I '$' printf '$\n%%\n' > "$nf"
strfile $nf
done
rm $tmp*.txt
mv $tmp* /usr/share/fortune/
rm -rf $tmp