I'd like to run tracd (Trac in standalone mode) with custom template for multiple repository list:
$ tracd -p 8080 -e /my/projects/path
For custom template, I need an environment variable (as said here):
$ export TRAC_ENV_INDEX_TEMPLATE=/path/to/template
My problem is, that I need to run tracd as another user. Now I have:
$ sudo -u devel tracd -d -p 8080 -e /my/projects/path
Running like devel there's no environment variable and it displays the project list on default template. I tried the obvious:
$ sudo -u devel export TRAC_ENV_INDEX_TEMPLATE=/path/to/template
sudo: export: command not found
Is my approach to this completely wrong, or I can solve this with setting another user's environment variable?

$ sudo -u devel bashand thenexport, which solves my problem, but I'd like to hear your opinion on this. – Martin Tóth Nov 30 '10 at 16:45