Posted by nick @ 11:04 on April 21st 2011

New DB2 fixpaks

New DB2 fixpaks have just come out: DB2 9.1.10; DB2 9.5.7; DB2 9.7.4

Get them from here: https://www-304.ibm.com/support/docview.wss?uid=swg27007053

Posted by nick @ 11:00 on April 21st 2011

Determine group of a directory

Determine group of a directory (current directory in this case)

perl -e 'print getgrgid((stat($ARGV[0]))[5]) . "\n";' $PWD

I’m not sure why I needed that, but I did need it once.