cleartool find and describe -fmt,如何将输出重定向到文件?
cleartool find & describe -fmt, how to redirect output to a file?
在 Windows 我正在尝试 运行 cleartool find 命令并获取分支中具有特定标签的所有版本,输出应包括版本和用户名。
该命令运行良好,问题是如何将输出重定向到文本文件。
cleartool find -avobs -branch brtype<BRANCH>) -version "lbtype(<LABEL>)" -exec "cleartool describe -fmt \"%Xn : %u\n\" \"%CLEARCASE_XPN%\"
我试过使用>、>>、|、|三通组合,但没有任何效果
知道怎么做吗?
尝试将命令包装在 CMD shell 中,然后可以重定向:
cmd /C "cleartool find -avobs -branch (brtype<BRANCH>) -version "lbtype(<LABEL>)" -exec "cleartool describe -fmt \"%Xn : %u\n\" \"%CLEARCASE_XPN%\""" > aText
在 Windows 我正在尝试 运行 cleartool find 命令并获取分支中具有特定标签的所有版本,输出应包括版本和用户名。
该命令运行良好,问题是如何将输出重定向到文本文件。
cleartool find -avobs -branch brtype<BRANCH>) -version "lbtype(<LABEL>)" -exec "cleartool describe -fmt \"%Xn : %u\n\" \"%CLEARCASE_XPN%\"
我试过使用>、>>、|、|三通组合,但没有任何效果
知道怎么做吗?
尝试将命令包装在 CMD shell 中,然后可以重定向:
cmd /C "cleartool find -avobs -branch (brtype<BRANCH>) -version "lbtype(<LABEL>)" -exec "cleartool describe -fmt \"%Xn : %u\n\" \"%CLEARCASE_XPN%\""" > aText