#!/usr/bin/env python3
#
# Copyright (c) 2013 Arista Networks, Inc.  All rights reserved.
# Arista Networks, Inc. Confidential and Proprietary.

"""
Read .ctr files containing counter dumps

Only displays the headers by default. Use --values to read the values
"""

import sys

from AleCountersBinaryDumpLib import CliHelper

if __name__ == "__main__":
   CliHelper().run( sys.argv[ 1: ] )
