shell command to copy the newest downloaded firmware to mbed by mac
Page last updated
18 Dec 2012, by
Kenichi Ikeda.
0
replies
- !/bin/sh
cd `dirname $0`
rm /Volumes/MBED/*.bin
cp `ls -t1 /Downloads/*.bin | head -1` "/Volumes/MBED"
Please log in to post comments.