all
来自「linux系统下的音频通信」· 代码 · 共 23 行
TXT
23 行
# This file contains a top-level script to run all of the Tcl# tests. Execute it by invoking "source all" when running tclTest# in this directory.## SCCS: @(#) all 1.8 97/08/01 11:07:14if {$tcl_platform(os) == "Win32s"} { set files [glob *.tes]} else { set files [glob *.test]}foreach i [lsort $files] { if [string match l.*.test $i] { # This is an SCCS lock file; ignore it. continue } puts stdout $i if [catch {source $i} msg] { puts $msg } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?