diff --git a/04-life.sh b/04-life.sh index 537da386..f014fd9e 100644 --- a/04-life.sh +++ b/04-life.sh @@ -3,12 +3,13 @@ echo "What is the meaning of life?" read meaning -if [ "$meaning" -eq 42 ]; then - echo "Yes!, That is the meaning of life!" +if [ "$meaning" = "42" ]; then + echo "Correct! 42 is the meaning of life." else - echo "Awww... You don't know the meaning of life" + echo "Nope — try again." fi + # here are some other arithemetic comparison operators # -eq -ne -gt -ge -lt -le diff --git a/GitHub_NetworkPic1.png b/GitHub_NetworkPic1.png new file mode 100644 index 00000000..5f3bf1e5 Binary files /dev/null and b/GitHub_NetworkPic1.png differ diff --git a/TinaLy/GitHub_NetworkPic1.png b/TinaLy/GitHub_NetworkPic1.png new file mode 100644 index 00000000..cfadb8fa Binary files /dev/null and b/TinaLy/GitHub_NetworkPic1.png differ diff --git a/TinaLy/GitHub_NetworkPic2.png b/TinaLy/GitHub_NetworkPic2.png new file mode 100644 index 00000000..321a4cde Binary files /dev/null and b/TinaLy/GitHub_NetworkPic2.png differ diff --git a/TinaLy/print_name.sh b/TinaLy/print_name.sh new file mode 100644 index 00000000..37e6d3c8 --- /dev/null +++ b/TinaLy/print_name.sh @@ -0,0 +1,2 @@ +#!/bin/bash +echo "Tina Ly" \ No newline at end of file diff --git a/two-branches.png b/two-branches.png new file mode 100644 index 00000000..da800218 Binary files /dev/null and b/two-branches.png differ