About file appending in ECS Exec

0

I am trying to append No.1 to a file in a container with ECS Exec command, but it is not appended.

aws ecs excute-command --cluster xxxx --task xxxxxxxxxxxxxx --container app --interactive --command "sed -i '$aADD' /tmp/xxx"

已提问 1 年前483 查看次数
3 回答
0

First, the $a syntax you're using in your sed command is used to append text after a specific line number, rather than at the end of the file. To append text at the end of the file, you should use the $ symbol alone.

Second, it's possible that the sed command is not working because of a permission issue or a problem with the file location or content.

maybe you can use

aws ecs execute-command --cluster <cluster-name> --task <task-id> --container <container-name> --interactive --command "echo 'ADD No.1' >> /tmp/<filename>"
profile picture
专家
已回答 1 年前
0

I tried the following command, but cannot append into file.

aws ecs excute-command --cluster xxxx --task xxxxxxxxxxxxxx --container app --interactive --command "echo 'No.1 add' >> /tmp/xxx"

已回答 1 年前
0

I append character into file by using ecs exec.

aws ecs excute-command --cluster xxxx --task xxxxxxxxxxxxxx --container app --interactive --command "/bin/sh -c 'echo dummy char >> /tmp/xxx'"

已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则