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"

gefragt vor einem Jahr483 Aufrufe
3 Antworten
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
EXPERTE
beantwortet vor einem Jahr
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"

beantwortet vor einem Jahr
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'"

beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen