commands/fix: create manpage for fix(8)

This commit is contained in:
Jacob Adams 2015-03-21 22:41:10 -04:00
parent 6f55e9f11d
commit 659a761960
2 changed files with 16 additions and 1 deletions

View File

@ -1,4 +1,4 @@
PROG= fix
MAN=
MAN= fix.8
.include <bsd.prog.mk>

15
minix/commands/fix/fix.8 Normal file
View File

@ -0,0 +1,15 @@
.TH man 8 "21 March 2015" "1.0" "fix man page"
.SH NAME
fix \- Update file from difflist
.SH SYNOPSIS
fix <original-file> <diff-list-file>
.SH DESCRIPTION
Works on diffs like patch does but outputs to STDOUT instead of overwriting the file
.SH EXAMPLES
diff test.old test.new > test.patch
fix test.old test.patch > test.new.2
.SH SEE ALSO
patch(1), diff(1)
.SH AUTHOR
Manpage written by Jacob Adams <tookmund@gmail.com>