mkman.sh 84 B

1234567
  1. #!/bin/sh
  2. cd man
  3. for i in *.rst; do
  4. rst2man.py $i > $( basename $i .rst ).1
  5. done