generated from seanpm2001/Git-Template_V8
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PROJECT_LANG_1.sh
36 lines (29 loc) · 1.17 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
28
29
30
31
32
33
34
35
36
#!/bin/sh
# Start of script
# The 1st project language file for this project.
function projectLanguageFileOne() {
echo ("Project language file #1");
wait 1;
echo ("For: seanpm2001/BASH.sh_Docs/");
wait 1;
echo ("About:");
wait 0.2;
echo ("I chose Shell as the first project language file for this project (BASH.sh/Docs) as this project is about a set of extensions for the BASH (sh/Shell) language. It needs to be represented by the language it is working with. It is getting its own project language file, starting here.");
wait 19;
return 0;
break;
}
# Output:
# Project language file #1
# For: seanpm2001/BASH.sh/Docs/
# About:
# I chose Shell as the first project language file for this project (BASH.sh/Docs) as this project is about a set of extensions for the BASH (sh/Shell) language. It needs to be represented by the language it is working with. It is getting its own project language file, starting here.
return projectLanguageFileOne();
break;
return 0;
exit;
# File info
# File version: 1 (2022, Monday, December 5th at 11:15 pm PST)
# File type: Bourne Again SHell Script file (*.sh)
# Line count (including blank lines and compiler line): 37
# End of script