From ce0132a45e1ab748ee3adbf96f934ef41ca6b59a Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Mon, 1 Jul 2019 14:52:55 -0400 Subject: Documenation & build automation for remote darwin Created shell script to automatically compile remote-only docs & rename Added make brew-pkg to automatically package files needed for homebrew Add missing docs Signed-off-by: Ashley Cui --- docs/podman-remote.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 docs/podman-remote.sh (limited to 'docs/podman-remote.sh') diff --git a/docs/podman-remote.sh b/docs/podman-remote.sh new file mode 100755 index 000000000..db3bb6d50 --- /dev/null +++ b/docs/podman-remote.sh @@ -0,0 +1,11 @@ +#!/bin/sh + +BREWDIR=$1 +mkdir -p $BREWDIR +docs() { +[ -z $1 ] || type="-$1" +for i in $(podman-remote $1 --help | sed -n '/^Available Commands:/,/^Flags:/p'| sed -e '1d;$d' -e '/^$/d' | awk '{print $1}'); do install podman$type-$i.1 $BREWDIR 2>/dev/null || install links/podman$type-$i.1 $BREWDIR; done +} +docs + +for cmd in 'container image pod volume'; do docs $cmd; done -- cgit v1.2.3-54-g00ecf