/
How to make global changes to comments
How to make global changes to comments
Description
How to globally search and modify content describes how to change page content. This describes how to make global changes to comments. On 5.3, this can be done without scripting. This page will show you the techniques for how this can be done.
Be specific
Whenever you use find replace logic, be as specific as possible in defining your find string so that you don't get unexpected replacements! Especially important when using regular expressions. Always test your regular expressions!
Requirements
- Confluence 5.7 and above
- CLI 5.3 or above
Details
- We use the @commentBody@ special value to indicate that we want the find replace logic to be applied to the existing comment body to set the updated comment. Note that @commentBody@ must be the only text in the comment parameter.
- We use the findReplace parameter in this simple case. You can also use the findReplaceRegex parameter similarly for more complex cases.
--action runFromContentList --cql "space = ACLI and type = comment" --common "--action updateComment --id @contentId@ --comment @contentBody@ --findReplace \"old.examplegear.com:new.examplegear.com\" "
, multiple selections available,
Related content
How to make global changes to comments (JCLI)
How to make global changes to comments (JCLI)
More like this
How to globally search and modify content
How to globally search and modify content
More like this
Modify All Pages
Modify All Pages
More like this
editComment
editComment
More like this
editComment
editComment
More like this
updateComment
updateComment
More like this