This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rem I have modified this Script from a bash script to a Batch Script | |
rem the modified Bash Script for this was created by roko-p | |
rem Here is the Git URL for Bash Script Using SFDX-CLI | |
rem https://gist.github.com/roko-p/d5d519c1cb4addfdd4644fd11c0aaa02 | |
rem Below are the comments by roko-p | |
rem This Original is a script by Thomas Gagné posted here: | |
rem https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000A8irTSAR | |
rem but modified to use the `sfdx` CLI tool instead |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This is a script by Thomas Gagné posted here: | |
# https://trailhead.salesforce.com/trailblazer-community/feed/0D54S00000A8irTSAR | |
# but modified to use the `sfdx` CLI tool instead | |
# of the `force` CLI tool. | |
# This assumes the user is logged in and the default | |
# org is set. If you're running this outside of a | |
# Salesforce DX project folder, just add the username | |
# (to specify which org to run this against) to both |