run-examples

来自「这是LDPC码(低密度奇偶校验码)的最新源程序」· 代码 · 共 13 行

TXT
13
字号
#!/bin/sh# Run all the examples, and check the output against the corresponding -out# file.  Note that slight differences are possible when the examples are# run on different machines, due to slightly different round-off errors.for e in `ls ex-* | grep -v "\\." | grep -v .-out` do   echo Running $e:  $e 2>&1 | diff ${e}-out -  echo " "done

⌨️ 快捷键说明

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