diff --git a/cmd/neofs-cli/modules/object.go b/cmd/neofs-cli/modules/object.go index 7ca27570..cea12685 100644 --- a/cmd/neofs-cli/modules/object.go +++ b/cmd/neofs-cli/modules/object.go @@ -653,6 +653,11 @@ func printHeader(cmd *cobra.Command, obj *object.Object, filename string) error } cmd.Printf(" %s=%s\n", attr.Key(), attr.Value()) } + + if obj.SplitID() != nil { + cmd.Printf("SplitID: %s\n", obj.SplitID().String()) + } + return nil }