#! /usr/bin/python
import os
import sys
import shutil

for arg in sys.argv[1:]:

  # State copy commands to retrieve header file's
  try:
    shutil.copy(arg,'.')
    print 'Retrieved file: ' + arg
  except Exception, err:
    print 'Not retrieved file: ' + arg
    print err

  try:
    shutil.copy(arg+'@@','.')
    print 'Retrieved file: ' + arg + '@@'
  except Exception, err:
    print 'Not retrieved file: ' + arg + '@@'


