Hi, I recently asked how to make user defined variables, and decided to
post some of the responses in case anyone is interested.
This is for C shell. Bourne, Korn and bash use 'read' i.e
$ read i
$ echo $i
#!/bin/csh
echo -n "enter input : "
set in = $<
echo $in
^^^ this one was the most common response.
--
Thanks to everyone who responded,
Jesse Civan