generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_3.sh
30 lines (27 loc) · 1.26 KB
/
PROJECT_LANG_3.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
#!/bin/sh
# Start of script
# Project language file 3
# For: Green Star OS
# About:
# I have chosen Shell as the third project language file for this project (seanpm2001/Green-Star-OS) because Shell is the go-to language for debug scripting on UNIX, and is native to several parts of functionality on this project. I am making it a project language, as Shell is just beginning to be used on this project, and it needed a project language file to represent it.
function projectLanguageFileThree() {
echo ("Project language file #3");
wait 1;
echo ("For: Green Star OS");
wait 1;
echo ("About:");
wait 0.2;
echo ("I have chosen Shell as the third project language file for this project (seanpm2001/Green-Star-OS) because Shell is the go-to language for debug scripting on UNIX, and is native to several parts of functionality on this project. I am making it a project language, as Shell is just beginning to be used on this project, and it needed a project language file to represent it.");
wait 12;
return 0;
break;
}
return projectLanguageFileThree();
break;
return 0;
exit;
# File info
# File version: 1 (Saturday, 2022, April 2nd at 4:02 pm)
# File type: Bourne Again SHell Script file (*.sh)
# Line count (including blank lines and compiler line): 31
# End of script