Surprise! We've been running on hardware provided by BuyVM for a few months and wanted to show them a little appreciation.
Running a paste site comes with unique challenges, ones that aren't always obvious and hard to control. As such, BuyVM offered us a home where we could worry less about the hosting side of things and focus on maintaining a clean and useful service! Go check them out and show them some love!
Description: Creates a PDF containing all the man pages on the system. Haven't tested, still running.
Submitted on October 4, 2015 at 02:27 PM

Section 1 (Bash)

#!/bin/bash
rm apropos.txt
rm mpages.txt
for i in {1..8}; do
 echo $i
 (apropos -s $i .)>>apropos.txt
done
while read p; do
 rline=$p
 mpage=$(echo $rline | cut -d ' ' -f1)
 secti=$(echo $rline | cut -d ' ' -f2 | tr -d '()')
 echo $secti $mpage
 man -t $secti $mpage | ps2pdf - pages/$mpage.pdf
done <apropos.txt
pdftk pages/* cat output man.pdf