> Hi,
> 1. Here's a script.
> ========================================
> #!/bin/csh -f
> set aaa = "A B C"
> echo aaa = "$aaa"
> set bbb = `echo "$aaa"`
> echo bbb = "$bbb"
> ========================================
> 2. And here are the running results.
> ========================================
> aaa = A B C
> bbb = A B C ### Where have the spaces gone? ###
> ========================================
Why not like this
#!/bin/csh -f
set aaa = "A B C"
echo aaa = "$aaa"
set bbb = "$aaa"
echo bbb = "$bbb"
Jos van Ras
*** Philips Medical Systems Netherlands
*** System Dev. Cardio/Vascular
*** Hardware, Librarian & Support Unix
*** The Netherlands
*** Homepage:http://www.jgmvanras.demon.nl/