Get the value of the specified column to glob:result
COLUMN
#usercommand// Author: @Chaoses-Ib// Version: 231101// Homepage: https://github.com/Chaoses-Ib/IbDOpusScripts// @set can't set an empty variable@set glob:result// SCRIPTARG doesn't workRename PATTERN * TO "&COLUMN&"@script:jscriptfunction OnGetNewName(getNewNameData){ if (!DOpus.vars.Exists("result")) DOpus.vars.Set("result", getNewNameData.newname); else DOpus.vars.Set("result", DOpus.vars.Get("result") + '\n' + getNewNameData.newname); return true; // prevent rename}// Access the result by `{$glob:result}`// Delete the result by `@set glob:result`