"Wright, Richard" wrote:
Under the bash shell, I do the following (note that this only lists the
files, it doesn't try to add them.):
find . -type f | p4 -x - files > /dev/null
Hmmm, I generally do:
find . -type f | xargs p4 add
There is a lot of room for improvement in the above, but it was something I
threw together quickly to help out a couple developers who kept forgetting
to check in new files.
Funny, I'm currently working on getting the makefile to check whether something
going into the build is known to the client. It'll error out if it's not.
Noel