Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想git使用tcl. 编程语言的选择是考虑到易于学习(如我所想)和可用性(git附带tcl)。
git
tcl
我想使用tcl脚本创建文件夹。通常我mkdir <name>在脚本中调用并且它工作正常,但如果它git命令它说:invalid command name "mkdir".
mkdir <name>
invalid command name "mkdir"
我是否遗漏了一些要添加到脚本中以使系统命令可供我使用的参考?
奇怪的是,它exec sh正在工作。但我不想mkdir换成sh……或者这是我的唯一方法?
exec sh
mkdir
sh
尝试使用file mkdir dir ?dir ...?.
file mkdir dir ?dir ...?