generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
PROJECT_LANG_1.sh
27 lines (24 loc) · 1.06 KB
/
PROJECT_LANG_1.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
#!/bin/sh
# Start of script
# I decided to make Shell the main project language file for this project (Seanpm2001/Learn-Shell) as Shell is the language this project is dedicated to, because this project is about learning the Shell programming language. It only makes sense to make Shell the official language for this project.
function projectLanguageFileOne() {
echo ("Project language file #1");
wait 1;
echo ("For: Seanpm2001/Learn-Shell");
wait 1;
echo ("About:");
wait 0.2;
echo ("I decided to make Shell the main project language file for this project (Seanpm2001/Learn-Shell) as Shell is the language this project is dedicated to, because this project is about learning the Shell programming language. It only makes sense to make Shell the official language for this project.");
wait 15;
return 0;
break;
}
return projectLanguageFileOne();
break;
return 0;
exit;
# File info
# File version: 1 (Friday, 2021 November 26th at 7:27 pm)
# File type: Bourne Again SHell Script file (*.sh)
# Line count (including blank lines and compiler line): 28
# End of script