⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dotest

📁 GNU binutils是GNU交叉工具链中的一个源码包
💻
字号:
#!/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

⌨️ 快捷键说明

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