Mac commands to mount any NTFS drive to enable write feature, you can follow the steps below or clone the repo on your Mac to run the automation.
To run the script on mac just go to the terminal and call
./mount.sh
Lets assume your drive name is TOSHIBA EXT
sudo umount /Volumes/TOSHIBA EXT
*Now we will create mount volume with TOSHIBA EXT1
shell sudo mkdir "/Volumes/TOSHIBA EXT1"
Find the disk identifier
diskutil list | grep TOSH
*Now the the volume, make sure to replace disj2s1 with the disk identifer.
sudo mount -t ntfs -o rw,auto,nobrowse /dev/disk2s1 "/Volumes/TOSHIBA EXT1"
*Open the drive
open "/Volumes/TOSHIBA EXT1"