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?

miriwoお一人様Advent Calendar 2024

Day 11

laravel sail コマンドのエイリアスを追加してsailコマンドを楽に使おう

Posted at

概要

sailは./vendor/bin/sailのようなコマンドを割と多様する。
そのまま実行しても良いのだがターミナルてタイピングするとちょっと大変なのでコマンドのエイリアスを登録してみる。

前提

筆者のPCのOSはMac OSでターミナルのシェルはBash

方法

.bash_profileに下記の様な記載をしている。

.bash_profile
if [ -f ~/.bash_aliases ]; then
    source ~/.bash_aliases
fi

筆者はエイリアス系の記載を.bash_aliasesに記載している。そのため公式ドキュメントでは.bashrcにエイリアスの指定をすると記載されているが、筆者は.bash_aliasesに追記する。

  1. .bash_aliasesに下記の内容を追記

    .bash_aliases
    alias sail='sh $([ -f sail ] && echo sail || echo vendor/bin/sail)'
    
  2. 下記コマンドを実行して.bash_aliasesを再読み込み

    source ~/.bash_aliases
    
  3. 下記コマンドを実行してエイリアスの設定を確認

    sail -h
    

エラーが出なければ完了

参考文献

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?