2017年12月24日

【PowerShell】クリスマスツリーを作ってみた


今日は12月24日、クリスマスイブということでスクリプトでクリスマスツリーを作ってみました。

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
################################################################################
# ChristmasTree.ps1
################################################################################
for($i = 0; $i -lt 10; $i++)
{
    cls
    Write-Host "   Merry Christmas   " -ForegroundColor Red -BackgroundColor Green
    Write-Host ""
 
    $mod = $i % 2
 
    if ($mod -eq 0)
    {
        Write-Host "          ☆" -ForegroundColor Yellow
        Write-Host ""
        Write-Host "        *" -NoNewline -ForegroundColor Red
        Write-Host "   *" -ForegroundColor Green
        Write-Host ""
        Write-Host "      *" -NoNewline -ForegroundColor Red
        Write-Host "   *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -ForegroundColor Yellow
        Write-Host ""
        Write-Host "    *" -NoNewline -ForegroundColor Yellow
        Write-Host "   *" -NoNewline -ForegroundColor Red
        Write-Host "   *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -ForegroundColor Red
        Write-Host ""
        Write-Host "  *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -NoNewline -ForegroundColor Red
        Write-Host "   *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -NoNewline -ForegroundColor Red
        Write-Host "   *" -ForegroundColor Yellow
        Write-Host "          ||" -ForegroundColor DarkRed
        Write-Host "          ||" -ForegroundColor DarkRed
        Write-Host ""
    }
    else
    {
        Write-Host "          ☆" -ForegroundColor Yellow
        Write-Host ""
        Write-Host "        *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -ForegroundColor Yellow
        Write-Host ""
        Write-Host "      *" -NoNewline -ForegroundColor Yellow
        Write-Host "   *" -NoNewline -ForegroundColor Red
        Write-Host "   *" -ForegroundColor Green
        Write-Host ""
        Write-Host "    *" -NoNewline -ForegroundColor Red
        Write-Host "   *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -NoNewline -ForegroundColor Yellow
        Write-Host "   *" -ForegroundColor Green
        Write-Host ""
        Write-Host "  *" -NoNewline -ForegroundColor Yellow
        Write-Host "   *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -NoNewline -ForegroundColor Yellow
        Write-Host "   *" -NoNewline -ForegroundColor Green
        Write-Host "   *" -ForegroundColor Red
        Write-Host "          ||" -ForegroundColor DarkRed
        Write-Host "          ||" -ForegroundColor DarkRed
        Write-Host ""
    }
 
    Start-Sleep -m 1000
}
なんかものずごい力技!(汗)


実行結果


それではよいクリスマスを。







スポンサーリンク



Follow Me on Pinterest
Clip to Evernote