#!/usr/bin/env python
# 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.xreadlines() )
if error:
   print error
else:
   for line in matchedLines:
      print line,
         
