0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windows PowerShellでAWS CLIのコマンド短縮

Last updated at Posted at 2021-02-23

Windowsでaws cliのDockerを使用するパターンのPowershellでのコマンド短縮方法を記載します。公式にはdoskey(コマンドプロンプト)を使用した方法が記載されています。

Docker コマンドの短縮

Aliasに設定します

プロファイルファイルを開きます。
もしファイルがない場合、New-Item -type file -force $profileで新規作成します。

PS C:\> notepad $profile

以下を記入します。作成する関数名は任意です。

function CustomAawsCli {docker run --rm -it -v $env:userprofile\.aws:/root/.aws -v ${PWD}:/aws amazon/aws-cli $args}
sal aws CustomAawsCli

awsでコマンドが使用できるようになります。

PS C:\> aws --version
aws-cli/2.1.27 Python/3.7.3 Linux/4.19.121-linuxkit docker/x86_64.amzn.2 prompt/off

参考記事

今すぐalias登録すべきPowerShellワンライナー

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?