3
3

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.

fishのaliasについてメモ

Posted at

##確認

alias

で使用できるaliasの一覧を表示する

##登録

alias rmi='rm -i'
alias rmi 'rm -i'

どちらの書き方でもよい

以下を実行すると、~/.config/fish/functions内にrm.fishとして保存され、ターミナル起動時に読み込まれるようになる

funcsave rmi

##削除
~/.config/fish/functions内にあるrm.fishを削除するか

functions -e rm

を実行する

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?