action:
- service: shell_command.test
data_template:
arguments: “this is some text“ 2773
I tried doing this: arguments: '{{states('sensor.1')}}, {{states('sensor.2')}}'
Like this the first value should be $1 and the second $2. However the first contains text and spaces: This is some text 2773
To work, it should be like this: "This is some text" 2773
But even if I add " to the code it doesn’t seem to work. arguments: '"{{states('sensor.1')}}", {{states('sensor.2')}}'