关于代码的解释
我有一些脚本,但我不知道它在做什么,如果有人能解释我,我会很高兴:
#!/bin/tcsh
if (-d test) then
svn up test
else
svn checkout http:some address test
endif
cd tests
python test_some.py $argv
PS 无法找到有关功能 cd 和 svn 的信息,
提前感谢您的帮助
I have some script and I have no idea what it is doing, will be happy if somebody will explain me:
#!/bin/tcsh
if (-d test) then
svn up test
else
svn checkout http:some address test
endif
cd tests
python test_some.py $argv
P.S can't find info about functions cd and svn
thanks in advance for any help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
该脚本运行第二个版本控制的测试脚本
该脚本运行一个 python 程序,该程序似乎运行一些测试。该脚本知道测试目录存储在 subversion 存储库中。
我对一件事有点困惑。它检查了“test”,但随后将其目录更改为“tests”。因此,要么原始帖子中存在转录错误,要么发生了稍微复杂的情况,就像,它以某种方式假设 tests 存在,但不存在 test。
The script runs a second revision-controlled test script
This script runs a python program which appears to run some tests. The script understands that the test directory is stored in a subversion repository.
I'm a bit confused about one thing. It checks out "test" but then changes its directory to "tests". So either there is a transcription error in the original post or something slightly more complex is going on, like, it somehow assumes that tests exists but not test.
cd
是“更改目录”命令。svn
是一个源代码存储库客户端。cd
is the "Change Directory" command.svn
is a source code repository client.该脚本执行以下操作:
The script does the following:
cd、svn 和 python 是可执行文件名称。 cd 是改变当前目录的命令。 svn 是 Subversion 源代码控制系统的命令(可执行文件名称)。 python是Python语言解释器。
cd, and svn, and python are executable names. cd is the command for changing current directory. svn is the command (executable name) for Subversion source control system. python is the Python language interpreter.