1
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 1 year has passed since last update.

Shifter CLI の使い方

Last updated at Posted at 2023-06-20

こちらのページを参考にしました。
Shifter CLI を詳しく見ていこう
@shifter/cli

インストール

sudo npm install -g @shifter/cli

バージョンの確認

$ shifter -v
@shifter/cli/0.4.0 linux-x64 node-v20.3.0

使用例

sites

go_sites_list.sh
ARGS="--username ekzemplaro --password ****"
#
shifter sites:list $ARGS
go_sites_describe.sh
ARGS="--username ekzemplaro --password ****"
#
shifter sites:describe $ARGS \
	--site-id "d003fd5f-45c7-45bf-868b-192072d81453"

artifacts

go_artifact_list.sh
ARGS="--username ekzemplaro --password ****"
#
shifter artifacts:list $ARGS \
	 --site-id "d003fd5f-45c7-45bf-868b-192072d81453"
go_artifact_status.sh
ARGS="--username ekzemplaro --password ****"
#
shifter artifacts:status $ARGS \
	 --site-id "d003fd5f-45c7-45bf-868b-192072d81453"

確認したバージョン

$ node --version
v20.3.0

$ npm --version
8.19.2
1
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
1
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?