Debian 11 Bullseye
Sponsored Link

PowerShell : インストール2021/09/29

 
Microsoft の PowerShell for Linux をインストールします。
概要は公式サイトを参照ください。
  ⇒ https://github.com/PowerShell/PowerShell
[1]
[2] Snappy から PowerShell をインストールします。
root@dlp:~#
snap install powershell --classic

powershell 7.1.4 from Microsoft PowerShell✓ installed
[3] PowerShell の起動と主な操作です。
# PowerShell 起動

root@dlp:~#
pwsh

PowerShell 7.1.4
Copyright (c) Microsoft Corporation.

https://aka.ms/powershell
Type 'help' to get help.

PS /root>

# コマンドレット一覧表示 (下例は頭 10 行のみ表示)
# 全て表示する場合は単に Get-Command で OK
PS /root> (Get-Command)[0..9] 

CommandType     Name                                               Version    S
-----------     ----                                               -------    -
Function        cd..
Function        cd\
Function        Clear-Host
Function        Compress-Archive                                   1.2.5      M
Function        Configuration                                      2.0.5      P
Function        Expand-Archive                                     1.2.5      M
Function        Find-Command                                       2.2.5      P
Function        Find-DSCResource                                   2.2.5      P
Function        Find-Module                                        2.2.5      P
Function        Find-RoleCapability                                2.2.5      P

# カレント PATH 表示
PS /root> pwd 

Path
----
/root

# /home へ移動
PS /root> cd /home 

# 引数なしでホームディレクトリに戻る
PS /home> cd 

# カレントディレクトリのファイル一覧を表示 (Get-ChildItem でも dir と同じ)
PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
d----           9/29/2021 11:04 AM                testdir
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh

# / のファイル一覧を表示
PS /root> Get-ChildItem / 

    Directory: /

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
l----           8/16/2021  3:16 PM                bin -> /usr/bin
d----           8/16/2021  3:27 PM                boot
d----           9/29/2021  9:36 AM                dev
d----           9/29/2021 10:45 AM                etc
d----           9/29/2021 10:21 AM                home
.....
.....

# カレントディレクトリにファイル新規作成
PS /root> New-Item -Path test.txt 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-----           9/29/2021 11:03 AM              0 test.txt

PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh
-----           9/29/2021 11:03 AM              0 test.txt

# カレントディレクトリにディレクトリ新規作成
PS /root> New-Item -ItemType Directory -Path testdir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:13 AM                testdir

PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
d----           9/29/2021 11:13 AM                testdir
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh
-----           9/29/2021 11:03 AM              0 test.txt

# echo してファイルにリダイレクト
PS /root> echo "test content" >> test.txt 

# ファイルの内容を表示
PS /root> Get-Content test.txt 
test content

# ファイルを移動/リネームする
PS /root> Move-Item test.txt test1.txt 
PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
d----           9/29/2021 11:13 AM                testdir
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh
-----           9/29/2021 11:14 AM             13 test1.txt

# ファイルをコピーする
PS /root> Copy-Item test1.txt test2.txt 
PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
d----           9/29/2021 11:13 AM                testdir
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh
-----           9/29/2021 11:14 AM             13 test1.txt
-----           9/29/2021 11:14 AM             13 test2.txt

# ディレクトリを中身も含めて再帰的にコピーする
PS /root> Copy-Item testdir testdir2 -Recurse 
PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
d----           9/29/2021 11:13 AM                testdir
d----           9/29/2021 11:14 AM                testdir2
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh
-----           9/29/2021 11:14 AM             13 test1.txt
-----           9/29/2021 11:14 AM             13 test2.txt

# ファイルを削除する
PS /root> Remove-Item test2.txt 
PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
d----           9/29/2021 11:13 AM                testdir
d----           9/29/2021 11:14 AM                testdir2
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh
-----           9/29/2021 11:14 AM             13 test1.txt

# ディレクトリを中身を含めて削除する
PS /root> Remove-Item testdir2 -Recurse 
PS /root> dir 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
d----           9/29/2021 11:00 AM                snap
d----           9/29/2021 11:13 AM                testdir
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 10:43 AM           5933 script.deb.sh
-----           9/29/2021 11:14 AM             13 test1.txt

# カレントディレクトリ配下から拡張子 .txt のファイルを検索する
PS /root> Get-ChildItem "*.txt" -Recurse 

    Directory: /root

Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-----           9/29/2021 10:39 AM            218 acl.txt
-----           9/29/2021 11:14 AM             13 test1.txt

# test1.txt から "test" 文字列を検索する
PS /root> Select-String -Pattern "test" test1.txt 

test1.txt:1:test content

# 引数に指定したコマンドレットのヘルプを表示する
PS /root> Get-Help Get-Content 

NAME
    Get-Content

SYNTAX
    Get-Content [-Path] <string[]> [-ReadCount <long>] [-TotalCount <long>]
    [-Tail <int>] [-Filter <string>] [-Include <string[]>] [-Exclude
    <string[]>] [-Force] [-Credential <pscredential>] [-Delimiter <string>]
    [-Wait] [-Raw] [-Encoding <Encoding>] [-AsByteStream] [<CommonParameters>]
.....
.....
関連コンテンツ