readded udpated scripts directory

This commit is contained in:
tomit4 2022-06-09 12:59:03 -07:00
parent cd053a412a
commit f3117c81d9
84 changed files with 3210 additions and 0 deletions

12
scripts/test.sh Executable file
View file

@ -0,0 +1,12 @@
#!/bin/bash
my_number=$1
my_other_number=$2
# the test keyword can be used to return a true or false statement based off of what parameters we pass to it, generally speaking though, we won't get an output unless we explicitly place 'test' within an 'if' statement.
if (test "$my_number" != "$my_other_number"); then
echo "yeah, those are NOT equal!"
else
echo "nah, those two numbers are equal!"
fi