mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-22 19:44:21 +01:00
1f4cc25436
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
6 lines
84 B
Bash
6 lines
84 B
Bash
#!/bin/sh
|
|
|
|
cd man
|
|
for i in *.rst; do
|
|
rst2man.py $i > $( basename $i .rst ).1
|
|
done
|