1a1435be3d
``` > neofs-lens list --path ./blob/blobovnicza/1/1/0 6ay4GfhR9RgN28d5ufg63toPetkYHGcpcW7G3b7QWSek/9ibXu6v4uTwLEcME5vyHev6Zi8LpxqiWTe1dahKpAbb6 H3VBttoLQoknzMDgnVNyLZ8EpkDnQjnaxDr9fnAWeEHA/Hw1titdGh7BrTe2yLotiYbVh9FQaRRNhoNzXTyetpFgt > neofs-lens inspect --path ./blob/blobovnicza/1/1/0 \ --address 6ay4GfhR9RgN28d5ufg63toPetkYHGcpcW7G3b7QWSek/9ibXu6v4uTwLEcME5vyHev6Zi8LpxqiWTe1dahKpAbb6 \ --header --out payload Version: v2.1 Type: REGULAR CID: 6ay4GfhR9RgN28d5ufg63toPetkYHGcpcW7G3b7QWSek ID: 9ibXu6v4uTwLEcME5vyHev6Zi8LpxqiWTe1dahKpAbb6 Owner: 2dokPzmmcLnnR21jQB3qPppTQRgwMNMKEWD CreatedAt: 0 PayloadSize: 32 Attributes: foo: bar > hexdump -C payload 00000000 ff 6c d4 71 c4 83 f1 5f b9 0b ad b3 7c 58 21 b6 |.l.q..._....|X!.| 00000010 d9 55 26 a4 1a 95 04 68 0b 4e 7c 8b 76 3a 1b 1d |.U&....h.N|.v:..| 00000020 ``` Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
47 lines
969 B
Go
47 lines
969 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-lens/internal/commands/inspect"
|
|
cmdlist "github.com/nspcc-dev/neofs-node/cmd/neofs-lens/internal/commands/list"
|
|
"github.com/nspcc-dev/neofs-node/misc"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var command = &cobra.Command{
|
|
Use: "neofs-lens",
|
|
Short: "NeoFS Storage Engine Lens",
|
|
Long: `NeoFS Storage Engine Lens provides tools to browse the contents of the NeoFS storage engine.`,
|
|
RunE: entryPoint,
|
|
SilenceUsage: true,
|
|
}
|
|
|
|
func entryPoint(cmd *cobra.Command, _ []string) error {
|
|
printVersion, err := cmd.Flags().GetBool("version")
|
|
if err == nil && printVersion {
|
|
fmt.Printf("Version: %s \nBuild: %s \nDebug: %s\n",
|
|
misc.Version,
|
|
misc.Build,
|
|
misc.Debug,
|
|
)
|
|
return nil
|
|
}
|
|
|
|
return cmd.Usage()
|
|
}
|
|
|
|
func init() {
|
|
command.AddCommand(
|
|
cmdlist.Command,
|
|
inspect.Command,
|
|
)
|
|
}
|
|
|
|
func main() {
|
|
err := command.Execute()
|
|
if err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|