?? fixit
字號:
#!/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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -