How to a prompt a particular value???

Hi i am working with clearcase in my UNIX machine...
Accidentally some had ran a script to check out all files in the machine....
Now i am actually trying to uncheck out all those files and had written a script for it....
The problem is that when ever i am trying to uncheck out the files, its asking the prompt :

"Save private copy of "/mtsdev/mts/common/shells/cronfile.sh"? [yes] ""

and i have to press "n" [no] for each and every file.....

So is there any way to prompt "n":mad: all the time for the above one......

You could try

# yes n | /path/to/script

Cheers,
ZB

Hard to tell from what you said, but you can probably either use 'expect' if that's installed on your system, or maybe a 'here document'.
A here document is something like this:

runscript.sh <<EOF
N
EOF