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

import sys
import Arnet.IntCmdLib

( matchedLines, error ) =\
    Arnet.IntCmdLib.matchIntCmds( sys.argv[ 1 : ], sys.stdin )
if error:
   print( error )
else:
   for line in matchedLines:
      print( line, end=' ' )
         
