パワーシェルで文字をつなげて3文字の文字を作る


ららら ららり ららる らられ ららろ
らりら らりり らりる らりれ らりろ
らるら らるり らるる らるれ らるろ
られら られり られる られれ られろ
らろら らろり らろる らろれ らろろ
りらら りらり りらる りられ りらろ
りりら りりり りりる りりれ りりろ
りるら りるり りるる りるれ りるろ
りれら りれり りれる りれれ りれろ
りろら りろり りろる りろれ りろろ
るらら るらり るらる るられ るらろ
るりら るりり るりる るりれ るりろ
るるら るるり るるる るるれ るるろ
るれら るれり るれる るれれ るれろ
るろら るろり るろる るろれ るろろ
れらら れらり れらる れられ れらろ
れりら れりり れりる れりれ れりろ
れるら れるり れるる れるれ れるろ
れれら れれり れれる れれれ れれろ
れろら れろり れろる れろれ れろろ
ろらら ろらり ろらる ろられ ろらろ
ろりら ろりり ろりる ろりれ ろりろ
ろるら ろるり ろるる ろるれ ろるろ
ろれら ろれり ろれる ろれれ ろれろ
ろろら ろろり ろろる ろろれ ろろろ

バッチファイル

echo e %*

::@pwsh -Command  "& (Invoke-Expression -Command ('{' + (Get-Content %~f0 | Where-Object {$_.readcount -gt 9}| Out-String )+ '}'))" %*
::
powershell -Command  "& (Invoke-Expression -Command ('{' + (Get-Content %~f0 | Where-Object {$_.readcount -gt 9}| Out-String )+ '}'))" %*
timeout /t 5&goto:eof



$arr1 = @("ら","り","る","れ","ろ")
$arr2 = @("ら","り","る","れ","ろ")
$arr3 = @("ら","り","る","れ","ろ")
$s = "らりるれろ"
$arr1 = $s.ToCharArray()
$arr2 = $s.ToCharArray()
$arr3 = $s.ToCharArray()
foreach($m in $arr1){
    foreach($e in $arr2){
        $s1 = ""
        foreach($b in $arr3){
            $s = $m+ $e+ $b+ " "
#            Write-Host $s
            $s1 = $s1+ $s
        }
        Write-Host $s1
        Start-Sleep -s 1
    }
}
Start-Sleep -s 300

bat,PowerShell ,windows

Posted by eightban