mirror of
https://github.com/mjl-/mox.git
synced 2024-12-28 17:33:47 +03:00
13 lines
234 B
Bash
13 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
|