generated from seanpm2001/Template_Other_V4
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
PROJECT_LANG_3.sh
20 lines (20 loc) · 984 Bytes
/
PROJECT_LANG_3.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh
# Start of script
# I have chosen Shell as the third project language file for this project (Skeuowie) 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 projectLanguageFileThree() {
echo ("Project language file #3");
echo ("For: Skeuowie");
echo ("About:");
echo ("I have chosen Shell as the third project language file for this project (Skeuowie) 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.");
return 0;
break;
}
return projectLanguageFileThree();
break;
return 0;
exit;
# File info
# File version: 1 (Monday, 2021 September 27th at 8:20 pm)
# File type: Bourne Again SHell Script file (*.sh)
# Line count (including blank lines and compiler line): 21
# End of script