github.com/vmware/govmomi@v0.37.1/govc/vm/guest/getenv.go (about)

     1  /*
     2  Copyright (c) 2014-2017 VMware, Inc. All Rights Reserved.
     3  
     4  Licensed under the Apache License, Version 2.0 (the "License");
     5  you may not use this file except in compliance with the License.
     6  You may obtain a copy of the License at
     7  
     8      http://www.apache.org/licenses/LICENSE-2.0
     9  
    10  Unless required by applicable law or agreed to in writing, software
    11  distributed under the License is distributed on an "AS IS" BASIS,
    12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    13  See the License for the specific language governing permissions and
    14  limitations under the License.
    15  */
    16  
    17  package guest
    18  
    19  import (
    20  	"context"
    21  	"flag"
    22  	"fmt"
    23  
    24  	"github.com/vmware/govmomi/govc/cli"
    25  )
    26  
    27  type getenv struct {
    28  	*GuestFlag
    29  }
    30  
    31  func init() {
    32  	cli.Register("guest.getenv", &getenv{})
    33  }
    34  
    35  func (cmd *getenv) Register(ctx context.Context, f *flag.FlagSet) {
    36  	cmd.GuestFlag, ctx = newGuestProcessFlag(ctx)
    37  	cmd.GuestFlag.Register(ctx, f)
    38  }
    39  
    40  func (cmd *getenv) Process(ctx context.Context) error {
    41  	if err := cmd.GuestFlag.Process(ctx); err != nil {
    42  		return err
    43  	}
    44  	return nil
    45  }
    46  
    47  func (cmd *getenv) Usage() string {
    48  	return "[NAME]..."
    49  }
    50  
    51  func (cmd *getenv) Description() string {
    52  	return `Read NAME environment variables from VM.
    53  
    54  Examples:
    55    govc guest.getenv -vm $name
    56    govc guest.getenv -vm $name HOME`
    57  }
    58  
    59  func (cmd *getenv) Run(ctx context.Context, f *flag.FlagSet) error {
    60  	m, err := cmd.ProcessManager()
    61  	if err != nil {
    62  		return err
    63  	}
    64  
    65  	vars, err := m.ReadEnvironmentVariable(ctx, cmd.Auth(), f.Args())
    66  	if err != nil {
    67  		return err
    68  	}
    69  
    70  	for _, v := range vars {
    71  		fmt.Printf("%s\n", v)
    72  	}
    73  
    74  	return nil
    75  }