]> git.armaanb.net Git - phrases.git/blob - contrib/manconvert
Make manconvert smarter
[phrases.git] / contrib / manconvert
1 #!/usr/bin/env sh
2 for i in man/*; do
3   pandoc ${i} -s -t man -o $(echo ${i} | cut -d '.' -f -2)
4 done