RHEL9 PowerShellをインストールする手順
環境
Red Hat Enterprise Linux release 9.2 (Plow)
概要
Microsoft の PowerShell for Linux をインストールします。
公式サイト
https://github.com/PowerShell/PowerShell
操作手順
1. PowerShell をインストールします。
# curl https://packages.microsoft.com/config/rhel/9/prod.repo > /etc/yum.repos.d/microsoft.repo
# dnf -y install powershell
2.PowerShellを起動します
# pwsh
PowerShell 7.4.1
コマンドレット一覧表示 (下例は頭 10 行のみ表示)
> (Get-Command)[0..9]
カレントPATH 表示
> pwd
# / のファイル一覧を表示
> Get-ChildItem /
# カレントディレクトリにファイル新規作成
> New-Item -Path ctn.txt