diff1

来自「obs网络试验平台」· 代码 · 共 19 行

TXT
19
字号
## General shell program to diff corresponding files in 2 directories.# Here, the files are of the form *.c.# This shell prog must be in one of the 2 directories; $1 is a path to the#      other directory.#for F in *.ccdo     echo $F     diff --strip-trailing-cr $F $1/$Fdonefor F in *.hdo     echo $F     diff --strip-trailing-cr $F $1/$Fdone

⌨️ 快捷键说明

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