# `touch`

`touch` creates empty files or updates file timestamps.

## Common `touch` usage

Make a new file without opening an editor:

```bash
touch filename
```

Make files

```bash
touch file1 file2 file3
```
