After some consideration, I think this is a better way to do what you want.
Code:
find ./ * -type f -maxdepth 0 -exec print_command '{}' \; -exec mv '{}' '{}'.printed \;
You'll have to replace "print_command" with whatever command you're using to print the files.
This will rename "file" to "file.printed" after it's been printed. Adjust to what you want. ('{}' is replaced with the file name when this is run).