[ Virtuoso ] Batch 模式
https://www.cnblogs.com/yeungchie/
virtuoso
virtuoso -nograph -replay script.il -log ~/LOG/CDS.log
- inline
virtuoso -nograph -log ~/LOG/CDS.log <<EOF
...
skill code
...
EOF
Help
virtuoso usage:
[-help | -h | -H] Displays this message.
[-V] Provides Cadence release version.
[-W] Provides Cadence release subversion.
[-log logfileName] Logs session to logfileName.
[-nocdsinit] Skip reading the cdsinit file.
[-noblink] Turn off blinking.
[-45] Enhanced drawing of 45 degree diagonal lines.
[-noxshm] Prevents use of X Shared Memory Access.
[-nograph] Starts software in non-graphical mode.
Should only use this option to replay logfiles
that have been created interactively.
[-nographE] Emulate non-graphical mode.
Uses the default display or that specified with the
-display command line option, but otherwise is similar
to the -nograph option. Note that windows and forms
will be drawn on the display specified. Nograph
emulation can also be invoked by defining the
environment variable CDS_NOGRAPH_DISPLAY to specify
the display along with the -nograph command line option
or this option.
[-replay inputLog] Specifies the log file to replay.
[-restore fileName] Specifies the session file to restore.
dbAccess
dbAccess -load script.il &> ~/LOG/CDS.log
- inline
dbAccess >& ~/LOG/CDS.log <<EOF
...
skill code
...
EOF