《TCL 教程英文版》 笔记 §18 简单的模式匹配..
时间:2008-08-26 来源:oychw
§18 简单的模式匹配- "globbing"
Globbing和多数shell相同: *,?,\X, [...]
举例:
# Matches
string match f* foo
# Matches
string match f?? foo
# Doesn't match
string match f foo
# Returns a big list of files on my Debian system.
set bins [glob /usr/bin/*]
相关阅读 更多 +