?? ecoff-cmp
字號:
#!/bin/sh## ecoff-cmp file1.o file2.o#ld -s -L -o /tmp/foo1.$$ $1 2>1 > /dev/nullld -s -L -o /tmp/foo2.$$ $2 2>1 > /dev/nulltail +10c /tmp/foo1.$$ > /tmp/foo3.$$tail +10c /tmp/foo2.$$ > /tmp/foo4.$$cmp /tmp/foo3.$$ /tmp/foo4.$$rm -f /tmp/foo[1234].$$
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -