generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_7.sh
27 lines (24 loc) · 1.05 KB
/
PROJECT_LANG_7.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 have chosen Shell as the seventh project language file for this project (Seanpm2001/AUTOMATE-2001) because Shell is the go-to language for debug scripting on UNIX, and is native to the UNIX desktop/mobile scheme that this project uses. It is important for a lot of backend functionality.
function projectLanguageFileSeven() {
echo ("Project language file #7");
wait 1;
echo ("For: Seanpm2001/AUTOMATE-2001");
wait 1;
echo ("About:");
wait 0.2;
echo ("I have chosen Shell as the seventh project language file for this project (Seanpm2001/AUTOMATE-2001) because Shell is the go-to language for debug scripting on UNIX, and is native to the UNIX desktop/mobile scheme that this project uses. It is important for a lot of backend functionality.");
wait 12;
return 0;
break;
}
return projectLanguageFileThree();
break;
return 0;
exit;
# File info
# File version: 1 (Sunday, 2021 October 24th at 4:46 pm)
# File type: Bourne Again SHell Script file (*.sh)
# Line count (including blank lines and compiler line): 28
# End of script