📄 daemons-start
字号:
#!/bin/sh#clear#echo Starting in `pwd`#set -xPATH=../../../daemon:../../../coss/naming:../../../imr:../../../ir:../../../idl:../../../cpp:$PATHexport PATHADDR=inet:`uname -n`:12456IRADDR=inet:`uname -n`:12500NSDADDR=inet:`uname -n`:12501BANK=inet:`uname -n`:13000PERSON=inet:`uname -n`:13001MICOINC=$MICODIR/includeIDLPAR="-I$MICOINC"printf "Starting IRD ..."ird --db=ir-db -ORBIIOPAddr $IRADDR 2>/dev/null &ird_pid=$!sleep 2echo $ird_pid > ird.pidecho done.if [ ! -f ir-db.idl ]thenprintf "Send ir_base.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/mico/ir_base.idlecho "done."printf "Send ir.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/mico/ir.idlecho "done."printf "Send CosObjectIdentity.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosObjectIdentity.idlecho "done."printf "Send CosRelationships.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosRelationships.idlecho "done."printf "Send CosGraphs.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosGraphs.idlecho "done."printf "Send CosNaming.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosNaming.idlecho "done."printf "Send CosLifeCycle.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosLifeCycle.idlecho "done."printf "Send CosExternalization.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosExternalization.idlecho "done."printf "Send CosContainment.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosContainment.idlecho "done."printf "Send CosReference.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosReference.idlecho "done."printf "Send CosExternalizationContainment.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosExternalizationContainment.idlecho "done."printf "Send CosExternalizationReference.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir $MICOINC/coss/CosExternalizationReference.idlecho "done."printf "Send Documents.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir Documents.idlecho "done."printf "Send Test.idl to IR ..."idl $IDLPAR -ORBIfaceRepoAddr $IRADDR --no-codegen-c++ --feed-ir Test.idlecho "done."fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -