sqlplus動態生成linux shell指令碼並執行

wisdomone1發表於2013-06-26

-bash-3.2$ more gene.sh
sqlplus  '/ as sysdba'<set pagesize 200 heading off  feedback off
spool /oracle/test.sh
select 'sudo -u root /usr/sbin/lvdisplay '||file_name||'|'||'grep '||''''||'LV Size'||''''||'|'||'awk {'||''''||'print '||'$'||'3'||
''''||'}' from dba_data_files where autoextensible='NO';
spool off
exit
EOF
more test.sh|sed '/^$/d'|sed '/SQL>/d'|sed '/auto/d'>test1.sh&&mv test1.sh test.sh
chmod u+x test.sh
. ./test.sh>rawsize.sql

 

小結:1, $要用''括起來,否則報錯

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-764842/,如需轉載,請註明出處,否則將追究法律責任。

相關文章