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?

CLI、はじめてみました (Part1)

Posted at

本記事の目的

Command-line interface (CLI)で使えるTipsを備忘録としてまとめていきます!

No.0001

mkdirでサブフォルダーまで一気に作成

zsh
mkdir -p {p1,p2,p3}/{sub1,sub2,sub3}

# 以下のフォルダ階層が一気に作成可能!
# p1/
#   sub1
#   sub2
#   sub3
# p2/
#   sub1
#   sub2
#   sub3
# p3/
#   sub1
#   sub2
#   sub3

-p引数で親ディレクトリがなくても動作する
スペースが入ると動作しないので注意

No.0002

フォルダ移動に疲れました、、

zsh
cd -

直前まで作業していたフォルダに移動!
神業ワープ

No.0003

上司から司令
-> 直ちに1000ファイル作成して
-> はいぃ!?

zsh
touch testfile{1..1000}.txt

testfile1, testfile2, ..., testfile1000を一瞬で作成
ドヤ顔で定時直帰ですね

No.0004

ええと、最近使ったコマンドでいいものがあったはず、、、

zsh
history 5

# 73 cd test
# 74 cd sub1
# 75 npx fast-cli --singleline

!75

番号指定して以前のコードを実行可能!

最後に

Tipsは便利です

皆さんの経験談やTipsもぜひコメントください!

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?