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脚本的主要内容,如果未能解决你的问题,请参考以下文章