GEEK: shell script question
2007-12-12 06:22 pm[EDIT: it's called a "here document"] Thanks variax!
Suppose you want pass in a complex query to a command line sql interpreter from within a shell script. You can do so with a command like this:
sql92 <<EOF
connect to db1 as LASTTRADES user eouser;
set format row;
select p.fundkey as fundkey,
max(t.closed) as last_trade
from mposition p, mtrade t
where p.primarykey=t.positionkey
and t.createdbycorporateaction=0
group by fundkey;
EOF
There’s a name for the syntax of the argument: <<EOF...EOF
But for the life of me, I can’t recall it, or find it on the web. Anyone know this off hand?
Original: craschworks - comments
no subject
Date: 2007-12-13 01:32 am (UTC)