#! /bin/bash
# same as copyobjects but just print the names

prefix="$1"

shift

i=0
for file in "$@"
do
  echo -n " \"$prefix$i.o\""
  i=$((i+1))
done
