Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. X
With Arbortext Command Language, How to remove a catalog path from the set catalogpath?
Solved! Go to Solution.
You should be able to do something along these lines:
function fixCatalogPath() {
local p = option("catalogpath");
gsub('C:\Path\To\Remove','', p);
set catalogpath = $p;
}
You should be able to do something along these lines:
function fixCatalogPath() {
local p = option("catalogpath");
gsub('C:\Path\To\Remove','', p);
set catalogpath = $p;
}
Clay,
Thank you for your help.
David
