>The script that produced to log i appended was:
>
>dsmadmc -id=admin -password=password move drm UC* wherest=vaultretrieve
>tost=onsiteretrieve cmdf=/var/adm/dsm/drmcmd.dsm cmd="checkin libvol tsmlib
>&vol devt=3590 stat=scratch"
Fred - Your first posting said you are running Korn shell.
Shells absorb quotes as they define to them a bundle of stuff to be
kept together. To have quotes "survive" you must embed another set.
Plant and execute the attached example.
Richard Sims, BU
#!/usr/bin/ksh
echo "This is a string in double quotes. When executed, they disappear.";
echo "\"This is a string in double quotes. When executed, the inners are retained.\"";