From e331eac9085a4e2511244575034bfc210e5b2761 Mon Sep 17 00:00:00 2001 From: Richard Liu Date: Sat, 30 Jun 2018 12:10:05 -0700 Subject: [PATCH] ">" to ">>". --- aws-scripts/say_bye.sh | 2 +- aws-scripts/say_hello.sh | 2 +- aws-scripts/setup_golang.sh | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/aws-scripts/say_bye.sh b/aws-scripts/say_bye.sh index 3637f4297..313815e65 100644 --- a/aws-scripts/say_bye.sh +++ b/aws-scripts/say_bye.sh @@ -1 +1 @@ -echo "Bye" > tmplog \ No newline at end of file +echo "Bye" >> tmplog \ No newline at end of file diff --git a/aws-scripts/say_hello.sh b/aws-scripts/say_hello.sh index fa402c768..46e68cef9 100755 --- a/aws-scripts/say_hello.sh +++ b/aws-scripts/say_hello.sh @@ -1 +1 @@ -echo "Hello" > tmplog \ No newline at end of file +echo "Hello" >> tmplog \ No newline at end of file diff --git a/aws-scripts/setup_golang.sh b/aws-scripts/setup_golang.sh index abe90b308..8a486cf2d 100755 --- a/aws-scripts/setup_golang.sh +++ b/aws-scripts/setup_golang.sh @@ -1,4 +1,5 @@ #!/bin/bash -x +echo "Setup Golang" >> tmplog sudo yum update -y sudo yum install -y golang