I want to safe resolve all the files in a pending changelist.
Currently, the only way I know to do this is to pass p4 a list of files.
SET CHANGE_NUMBER=default SET CHANGE_FILES=files.txt DEL %CHANGE_FILES% for /f "tokens=1 delims=#" %%a in ('p4 opened -c %CHANGE_NUMBER%') DO ECHO %%a>>%CHANGE_FILES% p4 -x %CHANGE_FILES% resolve -as
Is it possible with a single p4 command?