time

来自「indent为linux下代码自动格式化工具」· 代码 · 共 33 行

TXT
33
字号
#/bin/sh# First, make sure the executable existsif test -x ../indent; then  if test -d ./output; then    echo '****'    echo 'Errors remain; output directory still exists'    echo '****'    ls -ld ./output    exit 1  fi  echo -n "Regression testing "  ../indent --version  echoelse  echo '****'  echo First, you must make ../indent  echo '****'  echo  exit 1fifor i in 1 2 3 4 5 6 7 8 9 10 ; do  cp indent.c time$i.c  sync  time ../indent -o foo time$i.c  rm -f foo  syncdonerm -f time*.c foo

⌨️ 快捷键说明

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