I wrote the following bash script to send a command to my IOT device:
#!/bin/bash
# target aws command
# aws iot-data publish --topic 12345678_toDevice --qos 1 --payload ``echo '{"command": "do soemthing 90"}' | base64`` --region us-west-2
mac=$(cat mac.txt)
#echo $mac
cmd1="aws iot-data publish --topic "
cmd2="_toDevice --qos 1 --payload \`echo '{\"command\": \"dosomething "
cmd3="\"}' | base64\` --region us-west-2"
echo $cmd1$mac$cmd2$1$cmd3
command=$($cmd1$mac$cmd2$1$cmd3)
Basically, the command gets the mac address of the device im trying to communicate with, and forms am aws command string, then executes it.
When I run my script, I get this:
>./setpos.sh 45
usage: aws [options] <command> <subcommand> [<subcommand> ...] [parameters]
To see help text, you can run:
aws help
aws <command> help
aws <command> <subcommand> help
Unknown options: "dosoemthing, 45"}', |, base64`, '{"command":
aws iot-data publish --topic 588E815CA84C_toDevice --qos 1 --payload `echo '{"command": "setDesiredPosition 45"}' | base64` --region us-east-2
If I copy and paste the echo'ed command (last line) into bash, command works???? How do I get bash to format the command correctly so it can execute it from the script???