openocd shell脚本

Posted arci

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openocd shell脚本相关的知识,希望对你有一定的参考价值。

openocd.sh

 

#! /usr/bin/expect
set timeout 30
spawn su
expect "密码:"
send "123456\r"
send "./killopenocd.sh\r"
send "openocd --file ./board/ek-lm3s8962.cfg\r"
interact

 

killopenocd.sh

#! /bin/bash
kill -9 `ps -ef|grep ‘openocd --file‘|grep -v grep|awk ‘{print $2}‘`

以上是关于openocd shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

shell批量执行多个shell脚本

Shell脚本--变量(后附简单shell脚本案例)!

shell脚本翻译 急求

shell脚本书写方法

如何在shell脚本里调用另一个shell脚本

shell脚本获取参数&在线执行shell脚本