SlideShare a Scribd company logo
1 of 99
Download to read offline
tmuxを使おう
2020年09月27日
自己紹介
名前: 三宅 英明
Twitter: @mollifier
神戸のプログラマ
tmuxを使おう
tmuxを使おう
こんなことはありませんか?
tmuxを使おう
「エディタを開こう」
tmuxを使おう
「別のファイルも見たいな」
tmuxを使おう
「manのドキュメントも読まないと」
tmuxを使おう
「他にもいろいろいっぱい!」
tmuxを使おう
端末開きすぎ問題
tmuxを使おう
わけわからん
tmuxを使おう
そんなときでもtmuxがあれば大丈夫!
tmuxとは
tmuxとは
tmuxとは
一つの端末の中に、複数の仮想的な端末を作成して
管理するアプリケーション
tmuxとは
こういうアプリケーションをターミナルマルチプレクサ
と呼びます
tmuxとは
デモ
tmuxの導入
さっそく使ってみましょう
tmuxの導入
まずはインストール方法
tmuxの導入
Ubuntuの場合
$ sudo apt install tmux
この後ログインユーザーのパスワードを入力
tmuxの導入
CentOSの場合
rootユーザーになってから
# dnf install -y tmux
tmuxの導入
Macでも使えます
Hoebrewを導入してから、
$ brew install tmux
tmuxの導入
無事インストールされていれば、-Vオプションでバー
ジョン番号が表示される
$ tmux -V
tmux 3.0a
現時点での最新バージョンはtmux 3.1b
tmuxの基本的な使い方
無事インストールできました。それではさっそく起動し
てみましょう
tmuxの基本的な使い方
起動
$ tmux
tmuxの基本的な使い方
tmuxを起動すると、その中でログインシェル(bashな
ど)が起動します
tmuxの基本的な使い方
tmuxは、複数の端末の画面をタブのように切り替え
て表示できるようになっています。
この1つの画面のことをtmuxではウィンドウと呼びま
す。
tmuxの基本的な使い方
起動した直後はウィンドウが1つだけある状態です。
tmuxの基本的な使い方
Ctrl+b c(Ctrlを押しながらb、そのあとCtrlを離してc)
で、新しいウィンドウを作成してそれに切り替えます。
tmuxの基本的な使い方
ウィンドウの中で動作しているアプリケーション(通常
はシェル)を終了すると、そのウィンドウが閉じられま
す。
$ exit # シェルを終了するとウィンドウが消える
tmuxの基本的な使い方
すべてのウィンドウを閉じると、tmux自体が終了しま
す。
tmuxの基本的な使い方
まとめ
tmux で起動
Ctrl+b cで新しいウィンドウを作成
すべてのウィンドウを閉じるとtmuxが終了
tmuxの基本的な使い方
次に、ウィンドウを切り替える方法の説明
tmuxの基本的な使い方
Ctrl+b nで次(右)のウィンドウに移動
Ctrl+b pで前(左)のウィンドウに移動
tmuxの基本的な使い方
画面下のステータスバーのところに、現在のウィンド
ウ一覧が表示されます。 * が付いているのが現在の
ウィンドウです。
tmuxの基本的な使い方
ウィンドウには0から始まる番号が割り当てられている
ので、それを指定してもよい
Ctrl+b 数字で、指定した番号のウィンドウに移動
tmuxの基本的な使い方
こうやってウィンドウを切り替えるのがtmuxの基本的
な使い方
tmuxの基本的な使い方
tmuxの操作は、Ctrl+bの後に何かキーを押して行い
ます。
このCtrl+bは設定で変更可能です。また後で解説しま
す。
ペイン
tmuxのウィンドウは、さらに複数に分割できます。
ペイン
ウィンドウを分割した領域のことをペイント呼びます。
ペイン
ペインの作成
Ctrl+b "で、横方向に分割して新しいペインを作
成する
Ctrl+b %で、縦方向に分割して新しいペインを作
成する
ペイン
2つの画面を同時に見ながら作業したいときに便利
です
マニュアルを読みながらエディタでファイルを編
集する
ファイルを移動させるときに、移動前と移動後の
ディレクトリの内容を両方見る
ペイン
ペインの切り替え方法
Ctrl+b o 次のペインに移動する
Ctrl+b ; 直前に選択していたペインに移動する
Ctrl+b q ペインの番号を表示する。さらに数字を
入力するとペインに移動する
ペイン
ペイン切り替えのデフォルトキーバインドは、あまり直
感的ではありません。また後でおすすめの設定を紹介
します。
ここまでのまとめ
tmuxとは
インストール
起動
ウィンドウの操作
ペインの操作
tmuxの設定
tmuxの設定
tmuxのデフォルト設定は少々使いにくいところもある
ので、カスタマイズしてみましょう
tmuxの設定
tmuxの設定ファイルは$HOME/.tmux.confです
$ touch $HOME/.tmux.conf
tmuxの設定
このファイルに設定を追加してカスタマイズします
tmuxの設定
ちなにみ、.tmux.confで#から始まる行はコメントとし
て無視されます
# tmux.confの例
必要に応じて、後で分かるようにメモを書いておきまし
ょう
プレフィックスキーの変更
ここまで見てきたように、tmuxはCtrl+bの後に何かキ
ーを押して操作します。このCtrl+bのことをプレフィッ
クスキーと呼びます。
プレフィックスキーの変更
Ctrl+bは押しやすいとは言えないので、別のキーに変
更してみましょう
プレフィックスキーの変更
# プレフィックスキーをCtrl+tに変更する設定
unbind-key C-b
set-option -g prefix C-t
bind-key C-t send-prefix
プレフィックスキーの変更
設定ファイルの読み方
C-bは「Ctrlを押しながらb」という意味
プレフィックスキーの変更
# Ctrl+bのキーバインド割り当てを無しにする
unbind-key C-b
# Ctrl+tをプレフィックスキーに割り当てる
set-option -g prefix C-t
プレフィックスキーの変更
これで、今までCtrl+b c、Ctrl+b nなどと押していたと
ころが、Ctrl+t c、Ctrl+t nに変わります
プレフィックスキーの変更
じゃあ、Ctrl+tそのものをtmuxの中で動いているアプ
リケーションに送りたいときはどうするのか?
プレフィックスキーの変更
そのための設定がこれ
bind-key C-t send-prefix
これは、Ctrl+t Ctrl+tで「Ctrl+tそのもの」をtmuxの中
のアプリケーションに送る、という意味になります
プレフィックスキーの変更
プレフィックスキーは、押しやすくて、なおかつ自分が
使っている他のアプリケーションで使用頻度の低いキ
ーに割り当てると良いでしょう
プレフィックスキーの変更
いろいろ流派があります
Ctrl+t
Ctrl+o
Ctrl+a
プレフィックスキーの変更
他にも
Ctrl+q
Ctrl+j
Ctrl+k
プレフィックスキーの変更
いい感じのやつを設定しましょう
ウィンドウの切り替え
他にも、いくつかおすすめの設定を紹介します
ウィンドウの切り替え
# Ctrlを押したままウィンドウの切り替えができるようにす
る
bind-key C-c new-window
bind-key C-n next-window
bind-key C-p previous-window
ウィンドウの切り替え
標準では、新しいウィンドウを作成するためには、
Ctrl+bの後Ctrlを離してcを押す必要があります
ウィンドウの切り替え
実際に操作していると、Ctrlを離す前にcを押してしま
うことがあります。
そこで、Ctrl+b Ctrl+cでも新しいウィンドウが作られる
ようにしておくと便利です
ウィンドウの切り替え
# 「Ctrl+b Ctrl+c」と「Ctrl+b c」を同じ操作にする
bind-key C-c new-window
ウィンドウの切り替え
Ctrl+n、Ctrl+pも同様です。
bind-key C-n next-window
bind-key C-p previous-window
ペインの切り替え
ペインを切り替える標準の操作は少々分かりにくいの
で、次のように設定するのもよいでしょう
ペインの切り替え
bind-key h select-pane -L
bind-key C-h select-pane -L
bind-key j select-pane -D
bind-key C-j select-pane -D
bind-key k select-pane -U
bind-key C-k select-pane -U
bind-key l select-pane -R
bind-key C-l select-pane -R
ペインの切り替え
Ctrl+h,j,k,lでペインを切り替える設定です
h = 左、j = 下、k = 上、l = 右
ペインの切り替え
vim風の方向指定になっています
(vimmerにとっては)直感的
Escの待ち時間をなくす
set-option -s escape-time 0
Escの待ち時間をなくす
ちょっと細かい設定ですが、意外に重要です
Escの待ち時間をなくす
tmuxには、Meta+何か、というキーバインドがあります
デフォルトではMeta+b(M-b)などが設定されていま
す。
Escの待ち時間をなくす
Metaは、Altと同時押し、またはEscを押してからキー
を押して操作します。
たとえばMeta+bは、「Altを押しながらb」または「Esc
のあとEscを離してb」と操作します。
Escの待ち時間をなくす
このため、Escを押したときは、単独のEscなのか、
Metaを押すためのEscなのか、を区別する必要があ
ります。
Escの待ち時間をなくす
tmuxは、Escを押した後に一定時間の待ち時間を入
れてこれを区別しています
Escの待ち時間をなくす
デフォルトでは
Escを押して500ミリ秒以内に何かキーを押した
ら、Meta+何か
Escを押した後500ミリ秒何もキーを押さなかっ
たら、単独のEsc
とみなします
Escの待ち時間をなくす
つまり、tmuxの中で動いているアプリケーションに単
独のEscを送りたくても、500ミリ秒の遅れが発生しま
す。
Escの待ち時間をなくす
その待ち時間をゼロにするのがこの設定です
set-option -s escape-time 0
Escの待ち時間をなくす
vimなどEscを多用するアプリケーションをよく使う人
にはとくにおすすめの設定です
Escの待ち時間をなくす
当然、この設定をするとEscの後何かキーでMeta+何
か、という操作ができなくなります
Escの待ち時間をなくす
ぶっちゃけ、tmuxではその操作はほぼ使わないので、
なくてもよいです(筆者の主観)
ペインの切り替え
こんな感じでいろいろ設定できるので、試してみたてく
ださい
まとめ
基本操作
tmux で起動
Ctrl+b cで新しいウィンドウを作成
すべてのウィンドウを閉じるとtmuxが終了
ウィンドウの操作
Ctrl+b nで次(右)のウィンドウに移動
Ctrl+b nで前(左)のウィンドウに移動
Ctrl+b 数字で、指定した番号のウィンドウに移動
ペインの操作
Ctrl+b "で、横方向に分割して新しいペインを作
成する
Ctrl+b %で、縦方向に分割して新しいペインを作
成する
ペインの操作
Ctrl+b o 次のペインに移動する
Ctrl+b ; 直前に選択していたペインに移動する
Ctrl+b q ペインの番号を表示する。さらに数字を
入力するとペインに移動する
設定ファイル
簡単なtmux.confの例
https://gist.github.com/mollifier/9f577b018bc7176
c783da7ecd97f40ab
設定ファイル
筆者が使っているtmux.conf
https://github.com/mollifier/config/blob/master/dot.
tmux.conf
参考リンク
ソースコード https://github.com/tmux/tmux
公式のtmux.confの例
https://github.com/tmux/tmux/blob/master/exampl
e_tmux.conf
まとめ
他にも色々な使い方ができます。
詳しくはman tmuxを見てください。
まとめ
tmuxは有名なアプリケーションなので、Web上に解
説の記事などもたくさんあります。そういうのを参考に
するのも良いでしょう
まとめ
tmuxを使うと端末の操作がもっと便利になります。ぜ
ひ使ってみてください
まとめ
ありがとうございました

More Related Content

Recently uploaded

LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアルLoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアルCRI Japan, Inc.
 
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NTT DATA Technology & Innovation
 
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
LoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイスLoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイス
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイスCRI Japan, Inc.
 
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。iPride Co., Ltd.
 
新人研修 後半 2024/04/26の勉強会で発表されたものです。
新人研修 後半        2024/04/26の勉強会で発表されたものです。新人研修 後半        2024/04/26の勉強会で発表されたものです。
新人研修 後半 2024/04/26の勉強会で発表されたものです。iPride Co., Ltd.
 
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)Hiroshi Tomioka
 
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。iPride Co., Ltd.
 

Recently uploaded (7)

LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアルLoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
LoRaWAN スマート距離検出デバイスDS20L日本語マニュアル
 
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
NewSQLの可用性構成パターン(OCHaCafe Season 8 #4 発表資料)
 
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
LoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイスLoRaWANスマート距離検出センサー  DS20L  カタログ  LiDARデバイス
LoRaWANスマート距離検出センサー DS20L カタログ LiDARデバイス
 
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その22024/04/26の勉強会で発表されたものです。
 
新人研修 後半 2024/04/26の勉強会で発表されたものです。
新人研修 後半        2024/04/26の勉強会で発表されたものです。新人研修 後半        2024/04/26の勉強会で発表されたものです。
新人研修 後半 2024/04/26の勉強会で発表されたものです。
 
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
業務で生成AIを活用したい人のための生成AI入門講座(社外公開版:キンドリルジャパン社内勉強会:2024年4月発表)
 
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
Amazon SES を勉強してみる その32024/04/26の勉強会で発表されたものです。
 

Featured

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Applitools
 

Featured (20)

Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
Unlocking the Power of ChatGPT and AI in Testing - A Real-World Look, present...
 

tmuxを使おう