?? dotest
字號(hào):
#!/bin/sh# ad hoc debug toolx=$1y=$2xout=`basename $x`.xxx.$$yout=`basename $x`.yyy.$$mkdir $xoutmkdir $youtfor i in *.sdo echo Testing $i... object=`basename $i .s`.o $x $i -o $xout/$object $y $i -o $yout/$object# if they cmp, we're ok. Otherwise we have to look closer. if (cmp $xout/$object $yout/$object) then echo $i is ok. else if (doobjcmp $xout/$object $yout/$object) then echo Not the same but objcmp ok. else exit 1 fi fi echodonerm -rf $xout $youtexit 0# EOF
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -