store sqlplus output in variable

hi

how can i store sqlplus output to a variable in sh script (not bash)

Thanks
MM

$ v=`
  sqlplus -s <<!
test/test
set pages 0 echo off feed off
select sysdate from dual;
!
`
$ echo "$v"
04-DEC-10