Skip to content

Instantly share code, notes, and snippets.

@vmwarecode
Created April 29, 2016 10:44
Show Gist options
  • Select an option

  • Save vmwarecode/36ba1e7590658d755d53cbca32c14efd to your computer and use it in GitHub Desktop.

Select an option

Save vmwarecode/36ba1e7590658d755d53cbca32c14efd to your computer and use it in GitHub Desktop.
VDP Data Change Rate Output for all VMs
mccli client show --recursive | awk 'NR>4' | awk 'NR<2' | awk '{print $2}' | while read i; do avmgr getl --path="$i";done | awk 'NR>1' | awk '{print $2}'| while read i; do capacity.sh --client="$i" --days=5; done | tee -a ClientRateReport.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment