An open API service indexing awesome lists of open source software.

https://github.com/tanrax/terminal-AdvancedNewFile

Fast creation of files and directories. Mimics the operation of AdvancedNewFile (Vim plugin)
https://github.com/tanrax/terminal-AdvancedNewFile

advancednewfile mkdir python terminal touch

Last synced: 30 days ago
JSON representation

Fast creation of files and directories. Mimics the operation of AdvancedNewFile (Vim plugin)

Awesome Lists containing this project

README

        



⚡ Advanced New File ⚡

Add to your terminal the option to quickly create folders and files like a pro.



[![No Maintenance Intended](http://unmaintained.tech/badge.svg)](http://unmaintained.tech/)

## Use ⚙️

```bash
ad [path file or folder]
```

## Install 🔌

``` bash
pip3 install --user advance-touch
```

## Update 💾

``` bash
pip3 install --user --upgrade advance-touch
```

## 📚 Examples 📚

### Single folder 📁

```bash
ad airport/plane/
```

```
airport/
├── plane/
```
---

### Multiple folders 📁➕📁➕📁

```bash
ad airport/ station/ port/
```

```
airport/
station/
port/
```
---

### Single file with your hierarchy of folders 📁➡️📁➡️📝

```bash
ad airport/plane/captain.txt
```

```
airport/
├── plane/
│ ├── captain.txt
```

---

### Folder and single file with your hierarchy of folders 📁➕📁➡️📝

```bash
ad airport/ train-station/train.txt
```

```
airport/
├── plane/
train-station/
├── train.txt
```
---

### If your shell supports arguments expansion 📁➡️📁➡️📝🤖

```bash
ad airport/plane/{captain,passenger}.txt
```

```
airport/
├── plane/
│ ├── captain.txt
│ ├── passenger.txt
```
---

Thanks to the power of 🐍 Python 🐍

Pet created by [Freepik - Flaticon](https://www.flaticon.com/free-icons/folder)