Command line to delete all ClearCase view-private files

前端 未结 9 656
眼角桃花
眼角桃花 2020-11-30 05:13

I\'m looking for a command line to remove all view-private files and directories from a ClearCase view on Windows. I have Cygwin available as well.

The script avail

9条回答
  •  离开以前
    2020-11-30 05:45

    Under windows DOS prompt:

    for /f "delims=" %f in ('cleartool lspriv -s -do -oth ^| sort /r') do @del /f /q "%f"
    

提交回复
热议问题