---
title: "Open iTerm New Tab From Command Line"
date: 2023-02-23T10:34:26.000Z
author: Z.SHINCHVEN
tags: [iTerm]
canonical: https://atlassc.net/2023/02/23/open-iterm-new-tab-from-command-line
---
I created a bash script to open a new tab in iTerm from the command line so I can open iTerm in other terminal simulators.

```bash
#!/usr/bin/env bash
open -a iterm &*
```
