-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathbanners.ps1
More file actions
26 lines (23 loc) · 1.59 KB
/
banners.ps1
File metadata and controls
26 lines (23 loc) · 1.59 KB
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
function SyntaxBanner {
Write-Host ' ______ _ _ _ _____ _ ' -ForegroundColor Green
Write-Host '| ____| | (_) | / ____| | | ' -ForegroundColor Green
Write-Host '| |__ __| |_| |_ ___ _ _| (___ _ _ _ __ | |_ __ ___ __' -ForegroundColor Green
Write-Host '| __| / _` | | __/ _ \| ''__\___ \| | | | ''_ \| __/ _` \ \/ /' -ForegroundColor Green
Write-Host '| |___| (_| | | || (_) | | ____) | |_| | | | | || (_| |> < ' -ForegroundColor Green
Write-Host '|______\__,_|_|\__\___/|_| |_____/ \__, |_| |_|\__\__,_/_/\_\' -ForegroundColor Green
Write-Host ' __/ | ' -ForegroundColor Green
Write-Host ' |___/ ' -ForegroundColor Green
}
function BuildBanner {
Write-Host '#############################################################' -ForegroundColor Green
Write-Host '# BUILD GRAMMAR #' -ForegroundColor Green
Write-Host '#############################################################' -ForegroundColor Green
}
function TestBanner {
Write-Host '#############################################################' -ForegroundColor Green
Write-Host '# RUN TESTS #' -ForegroundColor Green
Write-Host '#############################################################' -ForegroundColor Green
}
function EndBanner {
Write-Host '#############################################################' -ForegroundColor Green
}