15
11

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 5 years have passed since last update.

iTerm2 のタブに任意の名前をつける方法

Last updated at Posted at 2016-12-01

一行で説明

デフォルトでは iTerm2 のタブにはそのタブで実行しているプロセスの名前などが表示されていますが、
タブに固定の名前をつけたい場合があります。

タブに名前をつける方法

$ echo -ne "\e]1;TAB_NAME\a"

上記のコマンドの TAB_NAME の部分を好きな文字に変えてください。

タブに名前をつけるコマンドをつくる

よく使う機能なので、コマンドとして作ってしまいます。
以下では、~/bin/ 以下にコマンドを設置します。

$ mkdir ~/bin
$ echo 'export PATH=$PATH:$HOME/bin' >> ~/.bashrc
$ source ~/.bashrc
$ vim ~/bin/nameiterm
$ chmod +x ~/bin/nameiterm
$ cat ~/bin/nameiterm

#! /bin/bash
echo -ne "\e]1;$1\a"

使用方法

$ nameiterm hoge

とすると、hoge という名前がタブにつきます。

15
11
1

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
15
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?