Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. 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