Skip to content

Instantly share code, notes, and snippets.

@Patlatus
Created May 13, 2021 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Patlatus/7ed3c691f6bf55e1ce35d2fed4a5267a to your computer and use it in GitHub Desktop.
Save Patlatus/7ed3c691f6bf55e1ce35d2fed4a5267a to your computer and use it in GitHub Desktop.
Create 2000 Custom Objects using SFDX
upperlim=2000
for ((i=0; i<=upperlim; i++)); do
echo "$i"
sfdx shane:object:create -t custom -l "CustomObject$i" -p "CustomObjects$i" -a "CustomObject${i}__c"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment