-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
PROJECT_LANG_2.sh
27 lines (24 loc) · 938 Bytes
/
PROJECT_LANG_2.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 second project language file for this project (Linux_Defender) because Shell is the go-to language for debug scripting on UNIX, and is native to several parts of functionality on this project.
function projectLanguageFileTwo() {
echo ("Project language file #2");
wait 1;
echo ("For: Seanpm2001/Linux_Defender");
wait 1;
echo ("About:");
wait 0.2;
echo ("I have chosen Shell as the second project language file for this project (Linux_Defender) because Shell is the go-to language for debug scripting on UNIX, and is native to several parts of functionality on this project.");
wait 12;
return 0;
break;
}
return projectLanguageFileTwo();
break;
return 0;
exit;
# File info
# File version: 1 (Sunday, 2022 February 20th at 6:33 pm)
# File type: Bourne Again SHell Script file (*.sh)
# Line count (including blank lines and compiler line): 28
# End of script