## find the path to the usb

```bash
diskutil list
```

## delete the partition and reformat

```bash
diskutil partitionDisk <YOUR-USB-DEV-PATH> MBR MS-DOS FAT32 100%
```

## example

```bash
diskutil partitionDisk /dev/disk2 MBR MS-DOS FAT32 100%
```