Document URL: Managing Content Guide for Satellite 6.14.0 Section Number and Name: 5.7. Synchronizing All Repositories in an Organization Describe the issue: Script we have: ORG="My_Organization" for i in $(hammer --no-headers --csv repository list --organization $ORG | awk -F, {'print $1'}) do hammer repository synchronize --id ${i} --organization $ORG --async done We should not need to rely on `awk -F, {'print $1'}` to get the IDs, We can simply use "--fields Id" Suggestions for improvement: Suggested script: ORG="My_Organization" for i in $(hammer --no-headers --csv repository list --organization $ORG --fields Id) do hammer repository synchronize --id ${i} --organization $ORG --async done Additional information: NA