iTerm2 vs Plain Old Terminal - Which One Is The Best?

Have you ever wondered if you have an alternative that will be better and useful than the default terminal?
Software Development
by Jey Geethan | August 28, 2017

In MacOS, you would have used the plain ol' terminal to run shell commands and do basic operations. Have you ever wondered if you have an alternative that will be better and useful than the default terminal? I have used iTerm2 and have found it useful in the following ways. Feel free to use it and leave your comments on what you feel about it.

iTerm2's Special Sauce:

1. Split Panes

You can split a particular terminal window into multiple panes. You can split it vertically or horizontally as you wish and you can also drag the size of the windows as and when you like it. How is it useful? It is useful because you can view multiple log tails in the single terminal window and you can also monitor multiple running apps in a single window.

Bonus: You can have multiple tabs as well - which means that you can create multiple split panes in different windows.

2. Copy To Clipboard Upon Selection

When looking at logs and you want to copy certain error messages, this comes in handy. Just select the text you want using the mouse (by dragging dropping or double clicking), the terminal automatically copies that particular text into the clipboard. Handy right?

3. Advanced Search

iTerm2 has got search functionalities that are very useful. It does a reverse search by default and allows you to use regular expressions. Also the highlighting of the search matches are very prominent and puts your eyes on it as easily as possible.

4. More Colors

The latest version supports colors upto 24 bit. So you can play around with the colors in your favorite editors.

5. Autocomplete

When you press CMD+; after typing a few words, you will get a list of previously entered command from which you can choose. It is very similar to the reverse search (control + r) but in a visual fashion and helps you get the options very easily.


Download iTerm2 Here:

https://www.iterm2.com/downloads.html


Related Articles

Ruby on Rails Engine - How To Keep Your Engine Migrations Abstracted From Your Host Rails App
Software Development

Ruby on Rails Engine - How To Keep Your Engine Migrations Abstracted From Your Host Rails App

by Jey Geethan | January 16, 2019
Have you ever worked on building a Rails Engine and wanted to keep the models, the migrations and everything inside the engine rather than using a generator to copy paste them into your host Rails App?

Ruby on Rails - Complex route constraints made easy
Software Development

Ruby on Rails - Complex route constraints made easy

by Jey Geethan | March 31, 2019
In Rails, we know that the routes are the most important entry-point where we define the which url hits which controller. We also know how to define the resources and add some conditions to the routing.