- 论坛徽章:
- 0
|
本帖最后由 xiaopan3322 于 2010-12-10 11:44 编辑
写这段脚本的起因,是因为下面这段内嵌的tcl会起一个sub-shell,但是我又不想用两个脚本来实现,所以我就想着用shell内嵌tcl的方法,没想到,还真的可以。
已经知道这种用法的请一笑而过,不知道的,大家互相学习:- #!/bin/bash
- #set -x
- ### Download baseline of SCs from dimension
- # version 1.0: created on 2010-06-1 by Bob
- #----------------------------------------
- #function: Setsee first, then download baseline, nested by tcl
- #parameters: $1 --- SC baseline
- #tips: execute tcl in shell, by using EOD, chmod firstly, execute secondly
- #----------------------------------------
- # {{{down_baseline_from_dim
- function down_baseline_from_dim()
- {
- local sc_baseline=$1
- cat > /tmp/scratch << EOD
- #!/usr/bin/expect --
- set timeout -1
- #set sc_baseline [lindex $argv 0]
- spawn /opt/bin/setsee LINSEE_BTS_2.1.0
- expect {
- "OK, tdlteman. Your environment has been set." {
- send_user "Set environment successfully!\n"
- expect "tdlteman@"
- send "/bts_gmps_hz/basics/Tools/Build/bin/LTE -c /bts_gmps_hz/Build_Tools/ltebuild/env/cfg_BL_download download $sc_baseline\r"
- }
- eof {
- send_user "Set environment failed!\n"
- exit 1
- }
- }
- #expect eof
- expect "tdlteman@"
- send "exit\r"
- #send "\003"
- #interact
- EOD
- chmod 700 /tmp/scratch
- /usr/bin/expect /tmp/scratch
- }
- #--------------------------------------------------------------------------------
- # }}}
- #----------------------------------------
- # {{{main
- source /bts_gmps_hz/Build_Tools/ltebuild/etc/build.conf
- label=$1
- sc=$2
- if [ "x$sc" = "x" ]; then
- sc=BTSOM
- fi
- case $sc in
- BTSOM)
- echo -e "\n***************************************************"
- echo "Process config file, replace BTSOM baseline: $label"
- sed -i "s/LNT[0-9].0_OM_.*$/$label/" $BASIC_DIR/env/cfg_BL_download || exit 1
- grep "BTSOM" $BASIC_DIR/env/cfg_BL_download
- echo "Done"
- echo -e "\n***************************************************"
- echo "Download this baseline"
- down_baseline_from_dim $label
- #/usr/bin/expect /bts_gmps_hz/Build_Tools/ltebuild/bin/test $label
- #exit 0
- ;;
- *)
- echo "Don't match"
- exit 1
- ;;
- esac
复制代码 这段代码的精华在于下面这两段:
cat > /tmp/scratch << EOD
#!/usr/bin/expect --
和
EOD
chmod 700 /tmp/scratch
/usr/bin/expect /tmp/scratch |
|