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

28
scripts/variables.sh Executable file
View file

@ -0,0 +1,28 @@
#!/bin/bash
# Variable assignment is rather straightforward in bash
name="brian"
echo $name
# prints:
# brian
# If we want to assign a number to a variable, we want to encase it within a subshell:
my_number=$((1))
echo $my_number
# prints
# 1
# Let's say we wanted to add to that number now, we could do that like so:
my_number=$(($my_number + 1))
echo $my_number
# prints
# 2
# Let's say we wanted to continually add to a number up to ten within a for loop:
for (( i=0; i<=10; i++ )); do
echo "$name's current number is: $i"
done