This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| diskutil unMountDisk /dev/disk2 | |
| diskutil eraseDisk HFS+ USBDISK /dev/disk2 | |
| /Applications/Install\ macOS\ Mojave.app/Contents/Resources/createinstallmedia --volume /Volumes/USBDISK --nointeraction --downloadassets |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # init | |
| ## check OS | |
| if [ "$(uname)" == 'Darwin' ]; then | |
| OS='Mac' | |
| elif [ "$(expr substr $(uname -s) 1 5)" == 'Linux' ]; then | |
| OS='Linux' | |
| elif [ "$(expr substr $(uname -s) 1 10)" == 'MINGW32_NT' ]; then |
NewerOlder