fixit
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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