LoginSignup
1
2

More than 3 years have passed since last update.

Windows 10 に GNU Awk をインストール

Last updated at Posted at 2020-04-15

インストール手順

  1. Chocolatey をインストール
    ※すでに Chocolaty をインストール済の場合は不要

    https://chocolatey.org/install#installing-chocolatey

  2. Chocolatey がインストールされたことを確認
    > choco --version
    0.10.15 のように出力されたら ok です。

  3. GNU Awk をインストール
    > choco install gawk

    https://chocolatey.org/packages/gawk

  4. GNU Awk がインストールされたことを確認
    > awk --version
    次のように出力されたら ok です。awk が使えます。

GNU Awk 5.0.1, API: 2.0 (GNU MPFR 3.1.5, GNU MP 6.1.2)
Copyright (C) 1989, 1991-2019 Free Software Foundation.

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2