File: generate.sh

package info (click to toggle)
libpam-abl 0.6.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 448 kB
  • sloc: ansic: 4,757; sh: 47; makefile: 10
file content (8 lines) | stat: -rwxr-xr-x 149 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/bash

if [[ "$1" == "clean" ]]
then
	ls ./|grep -v 'Makefile\|txt\|generate'|xargs rm
else
	for page in *.txt;do a2x -f manpage $page;done
fi