现在我们有一个命令which_repo address/to/file.js
,可以检测文件中使用的svn
个repo,并在屏幕上显示答案。它看起来像:
myrepo/address/to/file.js
之后我应该输入svn blame cvs/myrepo/address/to/file
。我正在从which_repo
答案中复制字符串的结尾。
如何编写将在步骤中执行此操作的函数,如:
blame address/to/file.js
答案 0 :(得分:4)
创建脚本blame
:
#!/bin/bash
svn blame "cvs/$(which_repo "$1")"