-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.sh
69 lines (59 loc) · 1.24 KB
/
script.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
currentYear=2021
newLine=
yoke=🐂
wagon_1=__[━━━━━━]
wagon_2=-┻━❂━━━❂━┻-
# __[━━━━━━]
# Final wagon: # 🐂-┻━❂━━━❂━┻-
lang=Shell
langSecondary=Bash
# <^>
echo Made with $lang, $langSecondary!
echo $newLine
# Preface
echo Heylo, who is dis?
read name
echo Oh, hai, $name! Get ready for another version of...OREGON TRAIL!
echo $newLine
echo Do you copy?
read reply
# Intro
echo $newLine
echo $newLine
echo $newLine
echo $newLine
echo $newLine
echo $newLine
echo $newLine
echo $newLine
echo [][][][][][][][][][][][][][][][]
echo [] ========================== []
echo [] OREGON TRAIL-.BASH EDITION []
echo [] ========================== []
echo [] === G0RG3 - YashasShah === []
echo [] ========================== []
echo [][][][][][][][][][][][][][][][]
# WARNING:
echo $newLine
echo $newLine
echo $newLine
# Plot
# > Choose job
echo Pick a job:
echo Banker from Boston
echo Carpenter from Ohio
echo Farmer from Illinois
read job
echo You are a $job...
if [[ $job = banker ]]; then
echo You have 800 coins!
echo $newLine
fi
if [[ $job = carpenter ]]; then
echo You have 600 coins!
echo $newLine
fi
if [[ $job = farmer ]]; then
echo You have 400 coins!
echo $newLine
fi