我正在尝试调试 svn start-commit 脚本,但似乎无法获得USER
.
#!/bin/sh
USER="$2"
if [ "$USER" = "test" ]; then exit 0; fi
我正在使用一个 linux 帐户
echo $USER
returns test
但是这个 start-commit 钩子永远不会返回 0。当我添加一个echo $USER
之前
if [ "$USER" = "test" ]; then exit 0; fi
没有返回值让我感到困惑。linux 或 svn 中是否有一些我想念的魔法?
我也尝试echo $USER > &2
返回 stderror 但没有成功