summaryrefslogtreecommitdiff
path: root/runCommand.m
blob: 649ffd9088f259a6dbd9822a27b507134f31206f (plain)
1
2
3
4
5
6
7
8
9
10
function runCommand(command)

	localPath = getenv('LD_LIBRARY_PATH');
	systemPath = getenv('PATH');

	setenv('LD_LIBRARY_PATH', localPath);
	system(command);
	setenv('LD_LIBRARY_PATH', systemPath);

end