「Windows/powershell/基本」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→関数) |
(→別ファイルの関数を呼び出す=) |
||
行74: | 行74: | ||
</pre> | </pre> | ||
− | ==別ファイルの関数を呼び出す | + | ==別ファイルの関数を呼び出す== |
fun.ps1 | fun.ps1 | ||
<pre> | <pre> |
2021年8月21日 (土) 02:57時点における版
目次
変数
$hoge = "hogehoge"
判定
$condition = true if ($condition) { Write-Host "OK" }
比較
$num = 10 if ($num -eq 10) { Write-Host 'OK' } else { Write-Host 'NG' }
その他比較
if ($num -ne 10) # 等しくない if ( $value -gt 5 ) # < if ( $value -lt 5 ) # > if ( ($age -gt 13) -and ($age -lt 55) ) # and条件 if ( $age -le 13 -or $age -ge 55 )# and条件
文字列内に変数
echo "hoge=$hoge" echo "hoge=${hoge}" echo ('hoge=' + $hoge)
dir存在判定
if (Test-Path .git) { Write-Host "exists" }
.gitのdirがある
↓存在しないときの判定
if (!(Test-Path .git))
変数で定義したpathを使用
$path = "hoge.txt" $data = Get-Content $path
テキスト文置換
aaaをcccへ置換
$data = Get-Content hoge.txt | % { $_ -replace "aaa", "ccc" } $data | Out-File hoge.txt
参考:https://teratail.com/questions/290149
エスケープ文字対応
[]などは、\でエスケープする
$data = Get-Content hoge.txt | % { $_ -replace "aaa\[hoge\]", "ccc[piyo]" }
関数
function add ($a, $b) { Write-Host ($a + $b) } add 5 4
別ファイルの関数を呼び出す
fun.ps1
function add ($a, $b) { Write-Host ($a + $b) }
funcall.ps1
. ./fun.ps1 add 5 4
実行ファイルのdirpath
version3未満の場合
$ScriptDir = $MyInvocation.MyCommand.Path echo $ScriptDir (windowsの場合) C:\Users\hoge1\Desktop\hoge.ps1 (macの場合) /System/Volumes/Data/www/PowerShells/hoge.ps1
version3以上の場合
$ScriptDir = $PSScriptRoot echo $ScriptDir (windowsの場合) C:\Users\hoge1\Desktop (macの場合) /System/Volumes/Data/www/PowerShells
macで使おうとしたが、初回は使えなかった。数日置いて確認した所使えたので、再起動などが、要因かもしれない。
参考:https://www.vwnet.jp/Windows/PowerShell/pwd.htm
ログ
function log($msg) { echo ($(Get-Date -Format "yyyy-MM-dd HH:mm:ss ") + $msg) } log "hogehogeを処理中です"
> 2021-03-20 22:27:18 hogehogeを処理中です