mirror of
https://github.com/mjl-/mox.git
synced 2025-01-01 03:13:48 +03:00
14 lines
234 B
Bash
14 lines
234 B
Bash
|
#!/bin/sh
|
||
|
(
|
||
|
cat <<EOF
|
||
|
/*
|
||
|
Command bstore provides commands for inspecting a bstore database.
|
||
|
|
||
|
Subcommands:
|
||
|
|
||
|
EOF
|
||
|
go run cmd/bstore/bstore.go 2>&1 | sed 's/^/ /' | grep -v 'exit status'
|
||
|
echo '*/'
|
||
|
echo 'package main'
|
||
|
) >cmd/bstore/doc.go
|