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"

asked a year ago457 views
3 Answers
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
EXPERT
answered a year ago
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"

answered a year ago
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'"

answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions