ref: 825b7e6424d8bed086c576f79997bf8704143bb8
dir: /mkfile/
ebook:V: $ebook
echo built $ebook
ms:V: $ms
echo built $ms
$ebook:V: $textsource $ebooksource
rfork
ramfs
for (f in $textsource/*){
fname=`{basename $f | sed 's/\.[a-zA-Z0-9]*$//g'}
txt2ebook $EBOOKARGS <$f >/tmp/$fname.xhtml
}
bind -a $ebooksource /tmp
@{cd /tmp && zip .} >$target
$ms:V: $textsource $mssource
rfork
ramfs
for (f in $textsource/*){
fname=`{basename $f}
txt2ms $MSARGS <$f >/tmp/$fname.ms
}
bind -a $mssource /tmp
cat /tmp/* >$target