This article helps to execute the CLI commands when the value passed in the parameter is having white spaces.
Instructions
To escape the white space in the group parameter while passing the input values, there are 2 cases to run the command successfully, based on the Operating System you are using (macOS and Windows).
Please find the below details based on the Operating System:
Execute the command on macOS as below:
While executing the command using the run parameters on macOS Operating System sometimes it throws an error, that is because of the white spaces included in the values. For example, if you have a group named my local group, so to execute the command by escaping the white space please use the escape characters as "\""my local group\""
--action runFromCsv --file "spaces.csv" --common "--action addPermissions --permissions "viewspace" --group "\""my local group\""
In the above command, if you pass the value as --group "my local group" it throws an error as shown below:
Parameter error: Unexpected argument: local
Execute the command on Windows as below:
To execute the command on Windows Operating System by escaping the white space please use the escape characters as shown below ""my local group""
--action runFromCsv --file "spaces.csv" --common "--action addPermissions --permissions "viewspace" --group ""my local group"""
In the above command, if you pass the value as --group "my local group" it throws an error as shown below:
Parameter error: Unexpected argument: local