Sha256: e33f17acfdafd238949919be584fef2a6aa149108715d580ed50145d5b8cb9ee
Contents?: true
Size: 718 Bytes
Versions: 1
Compression:
Stored size: 718 Bytes
Contents
#!/bin/sh set -e set -x # Run from the top level source directory OUTDIR=man SRCDIR=. MANPAGES="cbc cbc-pillowfight cbc-n1qlback cbc-subdoc" for page in $MANPAGES; do ronn --pipe --roff $SRCDIR/$page.markdown | sed 's/\\.\\.\\./\\[char46]\\[char46]\\[char46]/g' > $OUTDIR/$page.1 done ronn --pipe --roff $SRCDIR/cbcrc.markdown | sed 's/\\.\\.\\./\\[char46]\\[char46]\\[char46]/g' > $OUTDIR/cbcrc.4 MANLINKS="cat cp create observe flush hash lock unlock rm stats \ version verbosity view admin bucket-create bucket-delete connstr \ role-list user-list user-upsert user-delete ping n1ql mcflush \ decr incr watch" for link in $MANLINKS; do dest="$OUTDIR/cbc-${link}.1" echo ".so man1/cbc.1" > "$dest" done
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
libcouchbase-1.3.0 | ext/libcouchbase/doc/genman.sh |