generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_3.sh
20 lines (20 loc) · 935 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 (Walla Walla Washington) because Shell is the go-to language for debug scripting on UNIX, and is native to the UNIX desktop/mobile scheme that some of this project uses.
function projectLanguageFileThree() {
echo ("Project language file #3");
echo ("For: Walla Walla Washington");
echo ("About:");
echo ("I have chosen Shell as the third project language file for this project (Walla Walla Washington) because Shell is the go-to language for debug scripting on UNIX, and is native to the UNIX desktop/mobile scheme that some of this project uses.");
return 0;
break;
}
return projectLanguageFileThree();
break;
return 0;
exit;
# File info
# File version: 1 (Monday, 2021 October 4th at 6:51 pm)
# File type: Bourne Again SHell Script file (*.sh)
# Line count (including blank lines and compiler line): 21
# End of script