How to add p4 files recursively on UNIX
Saturday, November 7th, 2009 - 11:31 am - unix
You would think should have an option to do that automatically. Well… it almost does.
passing -x - to p4 command tells it to use the standard input as arguments.
(type p4 help usage for more info on global options)
find . -type f -print | p4 -x - add

