Category: Unix

Recursive Perforce Command Aliases

23 April, 2010 (10:46) | Unix | By: Scott

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 [...]

Building RRDTool on Centos/Redhat x86_64 Systems

22 October, 2009 (12:14) | Unix | By: Scott

I just ran into this one and thought someone else might find it useful. I was trying to compile rrdtool under Centos5 x86_64 so that I could have access to the perl libraries. It seems like rrdtool can get confused when looking for dependencies. First, install the dependencies via yum: # yum install cairo-devel libxml2-devel [...]