On Thu, 21 Oct 1999, Steve Cogorno wrote:
The behavior of P4 submit is quite perplexing. Why can't I include more
than one file spec on the command line? Often I want to do something like
this:
p4 submit //depot/{tree1,tree2}/foo/bar
The shell expands this into
p4 submit //depot/tree1/foo/bar //depot/tree2/foo/bar
Of course this is rejected because submit only takes a single argument.
"p4 help submit" indicates that a filespec can go on the command line, but
I think it has to be a p4 filespec, quoted from the shell expansion if
necessary. For example: p4 submit //depot/tree.../foo/bar
...RickM...