📄 elf2exe
字号:
#!/bin/sh# Just a Q&D prog to convert a bunch of RTEMS generated ELF files to raw# binary images that can be loaded on the TS-1325. The converted files are# saved in the current directory.## Tony AmbardarOBJCOPY=/usr/local/rtems/bin/i386-rtemself-objcopyif [ $# = 0 ]then echo "Description: Convert RTEMS elf files to raw binary files." echo "Usage: elf2exe <list-of-elf-files>" echo exit 1fifor i in $*do OUTFILE=$(basename `echo $i | sed 's/\.[a-zA-Z0-9]*$//g'`.exe) $OBJCOPY -O binary $i $OUTFILEdone
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -