Blame


1 f1ceade9 2022-08-24 op #!/bin/sh
2 f1ceade9 2022-08-24 op
3 f1ceade9 2022-08-24 op path="$(cd $OUTDIR && mktemp parts/$MESSAGE_ID.XXXXXXXXXX)"
4 f1ceade9 2022-08-24 op
5 f1ceade9 2022-08-24 op # save the input
6 f1ceade9 2022-08-24 op cat > "$OUTDIR/$path"
7 f1ceade9 2022-08-24 op
8 986e9047 2022-08-24 op echo "<li><a href='/$path'>$(file -b "$OUTDIR/$path")</a></li>" >> parts.html
9 f1ceade9 2022-08-24 op exit 0