我有一个 shell 环境变量PATH_TO_DIR
,我想在 TCL 脚本中检查该文件是否$PATH_TO_DIR/target.txt
存在。
我目前的解决方案是:
catch {exec /usr/local/bin/tcsh -c "echo $PATH_TO_DIR/target.txt" } result
if {![file exists $result]} {
puts "ERROR: the file $result is not exists"
}
我敢肯定有一种更优雅的方式。
如何仅使用 TCL 命令解决它?