fixit

来自「这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自」· 代码 · 共 18 行

TXT
18
字号
#!/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.newmv $1.new $1

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?