Putty Input thru Windows

Hi
anyone knows how to pass values to putty command prompt from MS windows.

since i am have a shell script to get input of several lines. i dont want to type it rather than input values from some windows based application

is there any way

thanks in advance.

unalbe to get your question completely

but if you want to pass values to your shell script instead of typing them everytime.

User arguments while running your shell script.

Create a file at your home dir with the lines, now use a for loop to pass on the values or better you can use expect.

************************
for i in `cat file_with_values`
do

./shell_script.sh $i

done

************************

http://floppsie.comp.glam.ac.uk/Glamorgan/gaius/scripting/5.html

are u sure about passing values..... or u are talking about pasting... ??