#!/usr/bin/python
# Elecraft K3/K2 Rig Control Python Utilities
# Copyright (C) 2006, 2007, 2008, 2009 Leigh L. Klotz, Jr <Leigh@WA5ZNU.org>
# Licensed under Academic Free License 3.0 (See LICENSE)

import sys
import k3lib as riglib

if len(sys.argv) > 1:
    rig = riglib.K3()
    text = sys.argv[1]
    rig.showtext(text)
else:
    print("usage: shotext \"text text\"")

