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.

エイリアス備忘録

Last updated at Posted at 2019-12-31

エイリアス

ターミナルでのコマンドを省略したい。と思ってエイリアスを取り入れてみた。
EC2に入るのも簡単
設定も思いの外、簡単!

エイリアスの使い方

ターミナルを開いて、下記を打ち込むとbashrcを編集できるようになる。

cd            ・ホームに移動する。
vim .bashrc    ・bashrcを編集する。

エイリアスの記述は、
alias 打ち込むコマンド='実行されるコマンド'
と記述する。

alias bash='vim .bashrc'
alias s='rails s'

エイリアスのコマンドを読み込んむようにbash_profileを編集する。

vim .bash_profile

bash_profileに

source .bashrc

と記述して保存する。

もう一度入り直すか 、ターミナルに下記を打ち込むと使えるようになる。

source .bashrc

エイリアスコマンド一覧

追加したら、追記していきます。

##その他

間違えてたらコメントお願いします!

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?