Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! 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