该文件是rt_linux

源代码在线查看: fixit

软件大小: 37457 K
上传用户: jianmingcao
关键词: rt_linux
下载地址: 免注册下载 普通下载 VIP

相关代码

				#!/bin/ksh								# By RidgeRun Inc.				#				# The input to this script is				# intended to be a *.S file which				# was previously created by the doit				# program. That program constructs				# a *.S file which has a defined data				# table containing values with leading				# zeroes. To satisfy our assembler those				# leading zeroes need to be stripped off				# and that is the purpose of this script.								echo "Removing leading zeros"				sed -e "s/ 0\(.\)/ \1/g" $1 | sed -e "s/ 0\(.\)/ \1/g" > $1.new				mv $1.new $1							

相关资源