1

现在我们有一个命令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
4

1 回答 1

4

创建一个脚本blame

#!/bin/bash
svn blame "cvs/$(which_repo "$1")"
于 2012-11-30T08:16:44.410 回答