Skip to content

Instantly share code, notes, and snippets.

@mccun934
Created March 16, 2019 14:36
Show Gist options
  • Save mccun934/e51bfd1bef013f3ced4ea7b676e72610 to your computer and use it in GitHub Desktop.
Save mccun934/e51bfd1bef013f3ced4ea7b676e72610 to your computer and use it in GitHub Desktop.
republish all content views in a loop
while true;
do
hammer --no-headers --csv content-view list | grep -v "Default Org" | awk -F, '{print $1}' | xargs -I arg1 -n 1 hammer -u admin -p changeme content-view publish --id arg1;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment