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

vim終了時にコマンド実行してみた

Last updated at Posted at 2023-03-01

ファイル編集時に自動で,コードをgithubにアップロードしたいなと思いしらべてみました.(ただこの方法だと特定のリポジトリだけアップロード機能をつけることができない...)

以下のサイトによるとシェルスクリプトのパスが通った場所に以下のようなファイルをvim`という名前でおくとできるようです.

#!/bin/bash
/usr/bin/vim "$@"
echo otukare

シェルスクリプトのパスが通った場所は以下のようにして確認できます.

$ echo $PATH
/opt/ros/noetic/bin:/home/dev/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin

今回は~/.local/bin内に上に記載したvimという名前のファイルを作成しました.
その後実行権限を付けて上げるとvim終了時にecho helloが実行されました.

$ vim bbbb
otukare
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?