Hi,

below is a small improvement to the truss script. It will first test for PROJECT_HOME being set. If not set, it will set it to the current path.

That allows to switch projects by just cd into the directory, which might be benfitial for beginners like me with small projects.

Index: truss/bin/truss
===================================================================
--- truss/bin/truss (revision 6)
+++ truss/bin/truss (working copy)
@@ -6,6 +6,7 @@
use Cwd;

if (!defined ($ENV{TRUSS_HOME})) {croak "Error! \$TRUSS_HOME not defined. Needed by script (to load included files)";}
+if (!defined ($ENV{PROJECT_HOME})) {$ENV{PROJECT_HOME} = cwd;}

require "$ENV{\"TRUSS_HOME\"}/bin/truss_usage.pl";
require "$ENV{\"TRUSS_HOME\"}/bin/truss_switches.pl";

This has nothing to do with this subject, but I was wondering whether it would benefit to simplify the forum. There are so many groups, I always have to look where a subject would fit in. I don’t know how other users feel about this?

Cheers,

Guenter