Recursive Perforce Command Aliases
If any of you use Perforce at work, you might find these aliases useful to add in your .bashrc or .profile. There are times when I need to recursively make changes to files in my workspace. alias p4_recursive_add=’find `pwd` -type f -print | p4 -x – add’ alias p4_recursive_del=’find `pwd` -type f -print | p4 [...]