⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 elf2exe

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻
字号:
#!/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 + -